You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
547 B

  1. .dialog-header {
  2. background-color: mc('blue', '700');
  3. background: radial-gradient(ellipse at top, mc('blue', '500'), transparent),
  4. radial-gradient(ellipse at bottom, mc('blue', '800'), transparent);
  5. height: 60px;
  6. color: #FFF;
  7. display: flex;
  8. align-items: center;
  9. padding: 0 1rem;
  10. font-size: 1.2rem;
  11. &.is-red {
  12. background-color: mc('red', '700');
  13. background: radial-gradient(ellipse at top, mc('red', '500'), transparent),
  14. radial-gradient(ellipse at bottom, mc('red', '800'), transparent);
  15. }
  16. }