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
Ivar Conradi Østhus ae38000cf7 Fix/make sure stickiness exists (#320)
* chore: update changelog

* 4.1.0-beta.1

* fix: Project filter was trying to filter based on full project object

* 4.0.6

* fix: add user to archived toggle view

* fix: remove console log

* 4.0.7

* 4.0.8

* fix: make sure the index we're trying to access exists

* fix: load fonts from google, fallback to system fonts

* fix: snapshot

* 4.0.10

* fix: update package json

* fix update fonts

* fix: remove custom font family for archive

* fix: update snapshot

Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com>
Co-authored-by: Christopher Kolstad <chriswk@getunleash.ai>
2021-08-11 13:34:39 +02:00

131 lines
1.7 KiB
SCSS

/** Select **/
.truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.fullwidth {
width: 100%;
}
.sectionPadding {
padding: 0 16px;
}
.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;
.titleText {
margin: 0;
font-size: 20px;
line-height: 24px;
}
.actions {
flex-shrink: 0;
}
}
.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 {
font-weight: normal;
}
.toggleName {
color: #37474f !important;
font-weight: 700;
}
.toolbar {
position: relative;
padding: 0 24px 16px 24px;
text-align: center;
}
.toolbarButton {
position: absolute;
top: 56px;
right: 24px;
z-index: 2;
}
.error {
color: #d50000;
}
.headerTitle {
font-size: var(--h1-size);
margin: 0;
}
.listItem {
padding: 0;
}
.section {
padding: 8px 16px 8px 16px;
}
.contentPadding {
padding: var(--card-padding);
}
.contentSpacing > * {
margin: 0.5rem 0;
}
.searchField {
margin-bottom: 2rem;
max-width: 400px;
}