Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | export const stateViewCSS = ` .state-symbol { margin: 1rem; width: 35%; display: none; text-align: center; font-size: 7rem; color: orange; } .state-symbol svg { width: 100%; height: 100%; } #sync-symbol { animation: rotate 10s linear infinite; } @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } #state-text { text-align: center; width: 75%; margin: auto; margin-top: 1rem; margin-bottom: 1rem; } #next-sync-text { text-align: center; } #enter-mfa-section { text-align: center; width: 90%; margin: auto; margin-bottom: 1rem; background-color: #d8d8d8; padding: 1rem; border-radius: 0.5rem; box-sizing: border-box; } #enter-mfa-section button { width: 100%; } ` |