Skip to content
Snippets Groups Projects
incompleteDataWarning.scss 539 B
Newer Older
  • Learn to ignore specific revisions
  • @import 'src/styles/base/color';
    
    .analysis-warning {
      background: $grey-linear-gradient-background;
      border: 1px solid $multi-color;
      border-radius: 4px;
    
      .warning-header {
        display: flex;
        align-items: center;
        padding: 0 1rem;
        background-color: $multi-color;
        gap: 0.5rem;
        h1 {
          color: black;
          font-size: 1rem;
          font-weight: normal;
        }
      }
    
      .warning-content {
        padding: 1rem;
        p {
          margin: 0;
          font-size: 1rem;
          font-weight: bold;
          color: $grey-bright;
        }
      }
    }