refactor(web): move form and .button-flex styles to general.css

This commit is contained in:
Masahiko AMANO 2023-01-29 13:55:17 +03:00
parent 5cb498112d
commit 9159cd0aca
2 changed files with 14 additions and 14 deletions

View File

@ -1,17 +1,3 @@
form {
margin: 0;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.button-flex {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.btn-secondary {
display: none;
}

View File

@ -85,3 +85,17 @@ h3 {
font-family: Secular One, sans-serif;
font-size: 3vw;
}
form {
margin: 0;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.button-flex {
display: flex;
flex-direction: row;
justify-content: space-between;
}