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.
wiki/client/scss/components/_dialog.scss

18 lines
547 B

.dialog-header {
background-color: mc('blue', '700');
background: radial-gradient(ellipse at top, mc('blue', '500'), transparent),
radial-gradient(ellipse at bottom, mc('blue', '800'), transparent);
height: 60px;
color: #FFF;
display: flex;
align-items: center;
padding: 0 1rem;
font-size: 1.2rem;
&.is-red {
background-color: mc('red', '700');
background: radial-gradient(ellipse at top, mc('red', '500'), transparent),
radial-gradient(ellipse at bottom, mc('red', '800'), transparent);
}
}