Add multi-stage builds and fix safari scrollbar

This commit is contained in:
Marcos Lilljedahl
2017-05-23 16:18:02 -03:00
parent 3ecdd1ea52
commit db1c06a99f
4 changed files with 31 additions and 16 deletions

View File

@@ -1,7 +1,7 @@
@import url('https://fonts.googleapis.com/css?family=Rationale');
.selected button {
background-color: rgba(158,158,158,0.2);
background-color: rgba(158,158,158,0.2);
}
md-card-content.terminal-container {
@@ -49,3 +49,13 @@ md-input-container .md-errors-spacer {
.stats {
min-height: 230px;
}
::-webkit-scrollbar {
-webkit-appearance: none;
width: 7px;
}
::-webkit-scrollbar-thumb {
border-radius: 4px;
background-color: rgba(0,0,0,.5);
-webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}