Files
oxygen-ui/src/assets/css/pages/tools/create.scss

61 lines
1.1 KiB
SCSS

@use "@/assets/css/mixins" as mixins;
@use "@/assets/css/constants" as constants;
[data-component=tools-create] {
.root-content {
padding: 20px;
gap: 20px;
height: 100%;
width: 100%;
> * {
gap: 10px;
width: 0;
.title {
flex: 0 0 auto;
height: 40px;
> * {
height: 100%;
width: 100%;
justify-content: center;
align-items: center;
font-size: 1.6em;
color: constants.$production-color;
font-weight: bolder;
}
}
.config {
.config-content {
padding: 20px;
.help {
margin-left: 6px;
color: constants.$font-main-color;
font-size: 0.8em;
}
.create-bt {
width: 100%;
font-weight: bold;
}
}
}
.preview {
display: flex;
justify-content: center;
align-items: center;
.no-preview {
font-weight: bolder;
color: constants.$font-secondary-color;
font-size: 1.4em;
}
}
}
}
}