Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
chore(global style): default style setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubinquitous committed May 30, 2023
1 parent 0af07f5 commit 516f1c3
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions src/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,48 @@
padding: 0;
box-sizing: border-box;
}

body {
background-color: #f9faff;
}

ul,
li {
list-style: none;
}

p {
display: inline-block;
}

a {
display: inline-block;
text-decoration: none;
color: inherit;
}

label {
cursor: pointer;
}

input,
textarea {
-moz-user-select: auto;
-webkit-user-select: auto;
-ms-user-select: auto;
user-select: auto;
border: none;
outline: none;
}

input:focus {
outline: none;
}

button {
outline: none;
border: none;
background: none;
padding: 0;
cursor: pointer;
}

0 comments on commit 516f1c3

Please sign in to comment.