Skip to content

Commit

Permalink
[Rev] Styling and responsivness
Browse files Browse the repository at this point in the history
  • Loading branch information
t-webber committed Apr 16, 2024
1 parent 60998ac commit e7042b9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -165,16 +165,19 @@
}
.result {
display: flex;
flex-direction: row;
}
.result > * {
flex: 0.5;
vertical-align: middle;
margin: 20px;
}
textarea {
font-size: 8px;
text-align: left;
height: 300px;
width: 100%;
width: calc(100% - 40px);
border: 2px solid black;
}
.form {
text-align: center;
Expand All @@ -183,7 +186,7 @@
margin: 0 auto;
}
@media screen and (max-width: 512px) {
@media screen and (max-width: 720px) {
.result {
display: block;
}
Expand Down

0 comments on commit e7042b9

Please sign in to comment.