webapp/src/components/Feed/CardTopic.module.scss

33 lines
541 B
SCSS
Raw Normal View History

2022-10-19 14:26:49 +00:00
.shoutTopic {
2023-05-25 20:48:36 +00:00
font-size: 1.4rem;
font-weight: bold;
2022-10-19 14:26:49 +00:00
letter-spacing: 0.08em;
margin-bottom: 0.8rem;
text-transform: uppercase;
transition: background-color 0.2s;
2023-05-26 19:22:24 +00:00
a:link,
a:visited {
2022-10-19 14:26:49 +00:00
background: transparent;
border: none;
color: $link-color;
position: relative;
z-index: 2;
&:hover {
background: $link-color;
color: #fff !important;
}
}
}
.shoutTopicFloorImportant {
a:link,
a:visited {
&:hover {
background: #fff !important;
color: #000 !important;
}
2022-10-19 14:26:49 +00:00
}
}