Skip to content

Commit

Permalink
feat(ui): flex the whole <body> container
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Jan 16, 2023
1 parent bddbfd5 commit 87eee23
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@
@tailwind components;
@tailwind utilities;

body {
@apply flex;

#app {
@apply flex-1;
max-width: 768px;
}

#history-container-shown-by-default {
display: none;
}

@screen md {
#app {
max-width: 640px;
}

#history-container-shown-by-default {
display: block;
}

}
}


button:not(.no-border) {
@apply m-[1px] px-2 py-1;
@apply border border-neutral-800 rounded-md;
Expand Down

0 comments on commit 87eee23

Please sign in to comment.