1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-02-19 20:55:55 +01:00

settings: fix overflow on small screen

This commit is contained in:
Kushagra Gour 2019-06-26 15:58:09 +05:30
parent b588c71958
commit 92143887dd
2 changed files with 4 additions and 1 deletions

View File

@ -169,7 +169,7 @@ export default class Settings extends Component {
<Divider />
<div class="line">
<span>Default Preprocessors</span>
<div class="flex">
<div class="flex fxw-w">
<select
aria-label="Default HTML preprocessor"
style="flex:1;margin-left:20px"

View File

@ -99,6 +99,9 @@ button {
.d-f {
display: flex;
}
.fxw-w {
flex-wrap: wrap;
}
.ov-h {
overflow: hidden;
}