Files
mattermost/webapp/sass/base/_typography.scss
Asaad Mahmood 6d6b813446 Ui ifxes (#5890)
* PLT-5975 - Back arrow in flag list cutting off

* PLT-6049 - Fixing pin icon color, and hover state

* PLT-5989 - Channel member and pin icon issue

* PLT-6067 - Pinned icon misaligned in firefox

* PLT-5885 - Adjusting icon spacing in modal
2017-03-29 21:07:39 -04:00

51 lines
668 B
SCSS

@charset 'UTF-8';
b,
strong {
font-weight: 600;
}
a {
color: $primary-color;
cursor: pointer;
text-decoration: none;
word-break: break-word;
&:focus,
&:hover {
color: $primary-color--hover;
}
}
body {
@include font-smoothing;
font-family: 'Open Sans', sans-serif;
}
.word-break--all {
word-break: break-all;
}
.whitespace--nowrap {
white-space: nowrap;
}
.overflow--ellipsis {
overflow: hidden;
text-overflow: ellipsis;
}
.fa {
&.fa-margin--left {
margin-left: 3px;
}
&.fa-margin--right {
margin-right: 3px;
}
}
.font-weight--normal {
font-weight: normal;
}