webapp/src/components/Topic/Full.module.scss
Ilya Y 73d8d1ef27
Follow topic btn (#291)
* Follow topic btn
2023-11-01 19:10:19 +03:00

37 lines
651 B
SCSS

.topicHeader {
@include font-size(1.7rem);
padding: 2.8rem $container-padding-x 0;
text-align: center;
h1 {
@include font-size(2rem);
color: #2638d9;
text-transform: uppercase;
}
}
.topicActions {
margin-top: 2.8rem;
.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);
border: none;
font-weight: 500;
border-radius: 2px;
cursor: pointer;
margin: 0 1.2rem 1em;
white-space: nowrap;
}
}