Skip to content

Commit

Permalink
fix: button text is no longer selectable (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
rlaferla authored Jan 11, 2024
1 parent f6a5f63 commit 7592b92
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/style/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,18 @@
.action-btn-r {
@apply grow ml-3;
}

}

body {
@layer base {
body {
color: white;
min-height: 100vh;
margin: 2em;
background: linear-gradient(to bottom right, #293B59, #007DA1);
}
}

button {
@apply select-none;
}
}

0 comments on commit 7592b92

Please sign in to comment.