1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/component/common/common.module.scss
2021-01-07 13:36:13 +01:00

101 lines
1.5 KiB
SCSS

.truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.fullwidth {
width: 100%;
}
.horisontalScroll {
overflow-x: scroll;
-webkit-overflow-scrolling: touch;
}
.horisontalScroll::-webkit-scrollbar {
display: none;
}
.listLink {
color: #212121;
text-decoration: none;
font-weight: normal;
display: block;
}
.listLink:hover {
color: #000;
}
@media (max-width: 920px) {
.hideLt920 {
display: none;
}
}
.dataTableHeader {
display: flex;
justify-content: space-between;
align-items: center;
height: 64px;
.title {
padding: 20px 16px 20px 24px;
}
.titleText {
margin: 0;
font-size: 20px;
line-height: 24px
}
.actions {
flex-shrink: 0;
padding: 20px 14px 20px 16px;
}
}
.switchWithLabel {
display: flex;
.label {
padding-right: 16px;
line-height: 24px;
}
.switch {
display: inline-block;
padding-right: 8px;
}
}
.emptyState {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
min-height: 200px;
}
.dropdownButton {
text-transform: none;
font-weight: normal;
}
.toggleName {
color: #37474f !important;
font-weight: 500;
}
.toolbar {
position: relative;
padding: 0 24px 16px 24px;
text-align: center;
}
.toolbarButton {
position: absolute;
top: 56px;
right: 24px;
z-index: 2;
}