mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
23 lines
324 B
SCSS
23 lines
324 B
SCSS
@charset 'UTF-8';
|
|
|
|
a {
|
|
color: $primary-color;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
word-break: break-word;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $primary-color--hover;
|
|
}
|
|
}
|
|
|
|
.text-danger {
|
|
color: desaturate($red, 20%);
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: desaturate($red, 20%);
|
|
}
|
|
}
|