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/v-dialog.scss

18 lines
569 B

.dialog-header {
background-color: mc('blue', '700');
background: radial-gradient(ellipse at top, mc('blue', '500'), mc('blue', '700')),
radial-gradient(ellipse at bottom, mc('blue', '800'), mc('blue', '700'));
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'), mc('red', '700')),
radial-gradient(ellipse at bottom, mc('red', '800'), mc('red', '700'));
}
}