refactor: views consolidation + css fixes

This commit is contained in:
Nicolas Giard
2018-08-11 18:16:56 -04:00
parent a78c6505f0
commit 453c1beab3
47 changed files with 189 additions and 1055 deletions

View File

@@ -0,0 +1,17 @@
.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);
}
}