A fullstack app for indexing standard.site documents
at main 32 lines 736 B view raw
1body { 2 background: url("./xp.jpg") no-repeat center center fixed; 3 background-size: cover; 4 min-height: 100vh; 5 display: flex; 6 align-items: center; 7 justify-content: center; 8 margin: 0; 9 padding: 20px; 10 padding-top: max(20px, env(safe-area-inset-top)); 11 padding-bottom: max(20px, env(safe-area-inset-bottom)); 12 padding-left: max(20px, env(safe-area-inset-left)); 13 padding-right: max(20px, env(safe-area-inset-right)); 14 overflow: hidden; 15 box-sizing: border-box; 16} 17 18#root { 19 width: 100%; 20 display: flex; 21 justify-content: center; 22} 23 24/* Hide toolbar text labels and secondary icons on mobile */ 25@media (max-width: 600px) { 26 .ie-toolbar span { 27 display: none !important; 28 } 29 .ie-toolbar .ie-secondary { 30 display: none !important; 31 } 32}