webapp/src/components/Views/Create.module.scss

54 lines
708 B
SCSS
Raw Normal View History

2023-03-06 22:24:09 +00:00
.articlePreview {
border: 2px solid #e8e8e8;
min-height: 10em;
padding: 1rem 1.2rem;
}
2023-03-26 16:56:49 +00:00
.formHolder {
padding: 0 4rem;
}
2023-03-06 22:24:09 +00:00
.saveBlock {
background: #f1f1f1;
line-height: 1.4;
margin-top: 6.4rem;
padding: 1.6rem 3.2rem;
text-align: center;
@include media-breakpoint-up(md) {
padding: 3.2rem 8rem;
}
.button {
margin: 0 divide($container-padding-x, 2);
}
}
2023-03-26 18:31:34 +00:00
.container {
.titleInput,
.subtitleInput {
border: 0;
outline: 0;
padding: 0;
font-size: 36px;
&::placeholder {
opacity: 0.3;
color: #000;
}
}
.titleInput {
font-weight: 700;
}
}
.createSettings,
.create {
display: none;
&.visible {
display: block;
}
}