Skip to content
Snippets Groups Projects
_splash.scss 895 B
Newer Older
  • Learn to ignore specific revisions
  • Hugo NOUTS's avatar
    Hugo NOUTS committed
    @import '../base/color';
    @import '../base/breakpoint';
    
    .splash-root{
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      height: 100vh;
      width: 100vw;
      overflow: hidden;
      background-color: rgba(27, 28, 34, 1);
      display: flex;
      flex-direction: column;
      .splash-header{
        height: 6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--textBright);
      }
      .splash-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
    
    Yoan VALLET's avatar
    Yoan VALLET committed
        margin-top: 6rem;
    
    Hugo NOUTS's avatar
    Hugo NOUTS committed
      }
      .splash-footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: 10rem;
        margin: 0 2rem;
        .splash-footer-error-text{
          text-align: center;
          color: red;
          margin: 0.5rem 0;
        }
        .splash-footer-button{
          max-width: 50vw;
        }
      }
    }