mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
* Sidebar, titles, and descriptions should now force wrap or ellipsis * Fixing lint issue
22 lines
320 B
SCSS
22 lines
320 B
SCSS
.edit-pack-form {
|
|
&__edit-btn {
|
|
float: right;
|
|
}
|
|
|
|
&__title {
|
|
@include ellipsis(80%);
|
|
|
|
.kolidecon {
|
|
color: $accent-dark;
|
|
}
|
|
}
|
|
|
|
&__description {
|
|
font-size: 15px;
|
|
font-weight: $normal;
|
|
line-height: 2;
|
|
color: $text-medium;
|
|
max-width: 800px;
|
|
word-wrap: break-word;
|
|
}
|
|
}
|