1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-27 08:40:10 +02: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 /> <Divider />
<div class="line"> <div class="line">
<span>Default Preprocessors</span> <span>Default Preprocessors</span>
<div class="flex"> <div class="flex fxw-w">
<select <select
aria-label="Default HTML preprocessor" aria-label="Default HTML preprocessor"
style="flex:1;margin-left:20px" style="flex:1;margin-left:20px"

View File

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