Skip to content

Commit

Permalink
style: <sup /> tag affecting line height
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkaroraa committed Dec 8, 2022
1 parent b094677 commit 3c9eb1f
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions packages/frontend/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ html {
background: 'none';
}

sup {
vertical-align: top;
font-size: 0.6em;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
-webkit-appearance: none;
Expand Down Expand Up @@ -54,47 +59,46 @@ a {

@-webkit-keyframes AnimationName {
0% {
background-position: 0% 46%
background-position: 0% 46%;
}

50% {
background-position: 100% 55%
background-position: 100% 55%;
}

100% {
background-position: 0% 46%
background-position: 0% 46%;
}
}

@-moz-keyframes AnimationName {
0% {
background-position: 0% 46%
background-position: 0% 46%;
}

50% {
background-position: 100% 55%
background-position: 100% 55%;
}

100% {
background-position: 0% 46%
background-position: 0% 46%;
}
}

@keyframes AnimationName {
0% {
background-position: 0% 46%
background-position: 0% 46%;
}

50% {
background-position: 100% 55%
background-position: 100% 55%;
}

100% {
background-position: 0% 46%
background-position: 0% 46%;
}
}


#rain-front {
position: absolute;
left: 0;
Expand Down Expand Up @@ -156,4 +160,4 @@ a {
100% {
opacity: 0;
}
}
}

0 comments on commit 3c9eb1f

Please sign in to comment.