50 lines
696 B
SCSS
50 lines
696 B
SCSS
//Global Styles.
|
|
|
|
.imex-table-header {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
|
|
&__search {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.tight-antd-rows {
|
|
.ant-row {
|
|
margin: 0rem;
|
|
line-height: 1rem;
|
|
}
|
|
}
|