Files
5etools-mirror-2.github.io/scss/converter.scss
TheGiddyLimit 12f34a38f8 v1.202.0
2024-03-24 23:47:02 +00:00

57 lines
773 B
SCSS

@use "includes/vars";
.inputArea,
.outputArea {
width: 100%;
height: 100%;
}
.select-inline {
display: inline-block;
width: initial;
}
.conv__ {
&head {
margin-top: 0;
margin-bottom: 2px;
}
&out_control__wrp {
padding: 0 3rem 0 0;
flex-shrink: 0;
}
&disp-message {
flex-shrink: 0;
font-size: 13px;
background-color: vars.$rgb-bg--alt;
border: 1px solid vars.$rgb-border-grey;
border-radius: 4px;
margin-right: 3rem;
&--warning {
color: #df00ff;
}
&--error {
color: #f00;
}
}
}
.night-mode {
.conv__ {
&disp-message {
background-color: vars.$rgb-bg--alt-night;
border-color: vars.$rgb-border-grey--night;
}
}
}
@media screen and (width <= #{vars.$width-screen-md}) {
.view-col-wrapper {
height: 40vh;
}
}