| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #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);
- }
|