33 lines
571 B
CSS
33 lines
571 B
CSS
|
#app {
|
||
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
text-align: left;
|
||
|
vertical-align: center;
|
||
|
color: #3646ea;
|
||
|
background-color: #fafcfc;
|
||
|
padding: 35px;
|
||
|
height: 100%;
|
||
|
}
|
||
|
|
||
|
.clearfix:before,
|
||
|
.clearfix:after {
|
||
|
display: table;
|
||
|
content: "";
|
||
|
}
|
||
|
|
||
|
.clearfix:after {
|
||
|
clear: both
|
||
|
}
|
||
|
|
||
|
.badge-item {
|
||
|
margin-top: 10px;
|
||
|
margin-right: 40px;
|
||
|
}
|
||
|
|
||
|
.tab-content {
|
||
|
height: 600px;
|
||
|
overflow-y: auto;
|
||
|
overflow-x: hidden;
|
||
|
overflow-scrolling: auto;
|
||
|
}
|