53 lines
901 B
SCSS
53 lines
901 B
SCSS
body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.imex-flex-row {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
|
|
&__grow {
|
|
flex: 1;
|
|
}
|
|
|
|
&__margin {
|
|
margin: 0.2rem 0.2rem;
|
|
}
|
|
|
|
&__margin-large {
|
|
margin: 0.5rem 0.5rem;
|
|
}
|
|
|
|
&__flex-space-around {
|
|
justify-content: space-around;
|
|
}
|
|
}
|
|
|
|
.ellipses {
|
|
display: inline-block; /* for em, a, span, etc (inline by default) */
|
|
text-overflow: ellipsis;
|
|
width: calc(95%);
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
border-radius: 0.2rem;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 0.25rem;
|
|
max-height: 0.25rem;
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 0.2rem;
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
background-color: #188fff;
|
|
}
|