Skip to content

Commit

Permalink
Fix path input width, slim margin on smaller screens
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Dec 23, 2024
1 parent 7759fe8 commit 4354507
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/play.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ body {
--color-button: #eee;
--color-button-bg: #118a7e;
--color-button-hover-bg: #0f776c;
--color-button-disabled-bg: #485871; margin: 2em;
--color-button-disabled-bg: #485871;
margin: 2rem;
color: var(--color-fg-default);
background-color: var(--color-canvas-subtle);
font-family: var(--font);
Expand Down Expand Up @@ -255,6 +256,9 @@ body ul, body ol {
}

@media screen and (max-width: 768px) {
body {
margin: 1rem;
}
#container {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -295,6 +299,7 @@ body ul, body ol {
background-color: var(--color-input-bg);
border: 1px solid var(--color-input-border);
border-radius: .5rem;
box-sizing: border-box;
}

#go {
Expand Down

0 comments on commit 4354507

Please sign in to comment.