1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-01 00:08:27 +01:00
unleash.unleash/frontend/src/component/common/common.module.scss
Nuno Góis 93a7d29003
fix: application name link styling (#3724)
https://linear.app/unleash/issue/2-1021/bug-dark-mode-application-screen-name-of-the-application-not-visible

Applies the styling changes mentioned in the task above, fixing the
style in dark mode and making these links more consistent in general.


![image](https://github.com/Unleash/unleash/assets/14320932/f3a873c1-e25e-4137-8b74-8020ebde0493)
2023-05-09 13:02:32 +00:00

132 lines
1.8 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 {
text-decoration: none;
font-weight: normal;
display: block;
}
.listLink:hover {
text-decoration: underline;
}
@media (max-width: 920px) {
.hideLt920 {
display: none;
}
}
@media (max-width: 600px) {
.hideLt600 {
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;
}
.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;
}