mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
113 lines
1.8 KiB
SCSS
113 lines
1.8 KiB
SCSS
.team-management {
|
|
padding: 0;
|
|
&__page-description {
|
|
font-size: $x-small;
|
|
color: $core-fleet-black;
|
|
@include sticky-settings-description;
|
|
padding-bottom: $pad-medium;
|
|
}
|
|
.data-table-block {
|
|
.data-table__table {
|
|
thead {
|
|
.name__header {
|
|
width: $col-md;
|
|
}
|
|
|
|
.host_count__header {
|
|
width: $col-md;
|
|
}
|
|
|
|
.actions__header {
|
|
width: auto;
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
.name__cell {
|
|
max-width: $col-md;
|
|
}
|
|
|
|
.host_count__cell {
|
|
max-width: $col-md;
|
|
}
|
|
|
|
.actions__cell {
|
|
width: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.no-teams {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-top: $pad-xxxlarge;
|
|
|
|
h1 {
|
|
font-size: $large;
|
|
font-weight: $regular;
|
|
line-height: normal;
|
|
letter-spacing: normal;
|
|
color: $core-fleet-black;
|
|
}
|
|
|
|
h2 {
|
|
font-size: $small;
|
|
font-weight: $bold;
|
|
margin: 0 0 $pad-large;
|
|
line-height: 20px;
|
|
color: $core-fleet-black;
|
|
}
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
color: $core-fleet-black;
|
|
list-style: none;
|
|
|
|
li {
|
|
&::before {
|
|
content: "•";
|
|
color: $core-vibrant-blue;
|
|
margin-right: $pad-medium;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__inner {
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
h1 {
|
|
font-size: $small;
|
|
font-weight: $bold;
|
|
margin-bottom: $pad-medium;
|
|
}
|
|
|
|
img {
|
|
width: 176px;
|
|
margin-right: $pad-xlarge;
|
|
}
|
|
|
|
p {
|
|
color: $core-fleet-black;
|
|
font-weight: $regular;
|
|
font-size: $x-small;
|
|
margin: 0;
|
|
margin-bottom: $pad-large;
|
|
}
|
|
|
|
.no-filter-results {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 350px;
|
|
}
|
|
}
|
|
|
|
&__inner-text {
|
|
width: 350px;
|
|
}
|
|
}
|