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

36 lines
650 B
SCSS
Raw Normal View History

2022-11-07 21:07:42 +00:00
.topicHeader {
2022-09-09 11:53:35 +00:00
@include font-size(1.7rem);
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
}
2022-11-07 21:07:42 +00:00
.topicActions {
2022-09-09 11:53:35 +00:00
margin-top: 2.8rem;
2023-11-13 14:43:08 +00:00
.write {
display: inline-flex;
align-items: center;
justify-content: center;
height: 40px;
min-width: 64px;
font-size: 17px;
padding: 8px 16px;
background: var(--background-color-invert);
color: var(--default-color-invert);
2022-09-09 11:53:35 +00:00
border: none;
2023-11-13 14:43:08 +00:00
font-weight: 500;
2022-09-09 11:53:35 +00:00
border-radius: 2px;
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
}
}