webapp/src/components/Topic/Full.module.scss

61 lines
987 B
SCSS
Raw Normal View History

2022-11-07 21:07:42 +00:00
.topicHeader {
2024-05-10 14:14:06 +00:00
font-weight: 500;
2022-11-18 18:33:31 +00:00
padding: 2.8rem $container-padding-x 0;
2022-09-09 11:53:35 +00:00
text-align: center;
2022-11-07 21:07:42 +00:00
h1 {
@include font-size(2rem);
color: #2638d9;
2023-05-26 19:22:24 +00:00
text-transform: uppercase;
2022-11-07 21:07:42 +00:00
}
2022-09-09 11:53:35 +00:00
}
2024-05-10 14:14:06 +00:00
.topicDescription {
@include font-size(1.8rem);
line-height: 1.4;
margin: 1rem 0 2rem;
}
2022-11-07 21:07:42 +00:00
.topicActions {
2022-09-09 11:53:35 +00:00
margin-top: 2.8rem;
2024-05-10 14:14:06 +00:00
.writeControl {
2023-11-13 14:43:08 +00:00
display: inline-flex;
align-items: center;
justify-content: center;
height: 40px;
min-width: 64px;
font-size: 17px;
padding: 8px 16px;
2024-05-10 14:14:06 +00:00
border: 1px solid #f7f7f7;
background: #f7f7f7;
color: var(--default-color);
2023-11-13 14:43:08 +00:00
font-weight: 500;
2022-09-09 11:53:35 +00:00
cursor: pointer;
2022-11-18 18:33:31 +00:00
margin: 0 1.2rem 1em;
white-space: nowrap;
2022-09-09 11:53:35 +00:00
}
2024-05-10 14:14:06 +00:00
.followControl,
.writeControl {
border-radius: 0.8rem;
}
}
.topicDetails {
display: flex;
flex-wrap: wrap;
font-size: 1.4rem;
justify-content: center;
gap: 4rem;
margin-top: 1.5rem;
}
.topicDetailsItem {
display: flex;
}
.topicDetailsIcon {
2024-05-18 16:55:24 +00:00
display: block;
}