mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 17:19:37 +02:00
[web] Project sharing access denied redesign GitOrigin-RevId: b1e3016eb7ef9e2a502e0b67abc3b10c08531fe9
44 lines
698 B
SCSS
44 lines
698 B
SCSS
#token-access-page {
|
|
&.token-access-legacy-page {
|
|
height: 100vh;
|
|
height: 100dvh;
|
|
}
|
|
|
|
.vertically-centered-content {
|
|
height: $thin-footer-content-height;
|
|
}
|
|
}
|
|
|
|
@include theme('default') {
|
|
.token-access-content {
|
|
@include dark-bg;
|
|
}
|
|
}
|
|
|
|
.token-access-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
.token-access-action-header {
|
|
background-color: var(--bg-primary-themed);
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
.token-access-content {
|
|
flex: 1 1 auto;
|
|
color: var(--content-primary-themed);
|
|
|
|
h1,
|
|
h2 {
|
|
color: var(--content-primary-themed);
|
|
}
|
|
}
|
|
|
|
.token-access-home-link {
|
|
font-size: 2rem;
|
|
margin-left: 1rem;
|
|
color: var(--content-primary-themed);
|
|
}
|