fleet/frontend/components/packs/EditPackFormWrapper/_styles.scss
Kyle Knight 38120b9fca Sidebar, titles, and descriptions should now force wrap or ellipsis (#905)
* Sidebar, titles, and descriptions should now force wrap or ellipsis

* Fixing lint issue
2017-01-11 14:35:45 -06:00

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;
}
}