60 lines
909 B
SCSS
Raw Normal View History

2022-04-05 15:03:17 -06:00
.custom-gated-topic-container {
2022-04-05 14:23:15 -04:00
background: var(--tertiary-low);
2022-04-05 15:03:17 -06:00
border-top: 5px solid var(--tertiary);
2022-04-05 14:23:15 -04:00
position: fixed;
width: 100%;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
min-height: 50%;
2022-04-05 15:03:17 -06:00
// align content in the middle
display: grid;
place-items: center;
}
.custom-gated-topic-content {
text-align: center;
padding: 0 1rem;
2022-04-05 15:03:17 -06:00
&--header {
font-size: var(--font-up-5);
margin-bottom: 1rem;
font-weight: 700;
}
&--text {
font-size: var(--font-up-2);
}
&--cta {
margin-top: 2rem;
2022-04-05 15:03:17 -06:00
&__signup {
margin-bottom: 1rem;
}
&__login {
#cta-login-link {
background: transparent;
color: var(--primary-high);
}
}
2022-04-05 15:03:17 -06:00
}
2022-04-05 14:23:15 -04:00
}
.topic-in-gated-category {
2022-04-05 15:03:17 -06:00
overflow-y: hidden;
height: 100%;
2022-04-05 14:23:15 -04:00
.topic-navigation {
visibility: hidden;
}
2022-04-05 14:23:15 -04:00
.post-stream {
max-height: 150vh;
overflow: hidden;
}
}