Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kyoya0819 committed Sep 5, 2024
1 parent a969620 commit b8e4b1d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/sections/character-counter/Counter/Counter.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@
li {
flex: 1;

@media screen and (max-width: 600px) {
@media screen and (width <= 600px) {
min-width: 50%;

&:nth-of-type(n+3) {
&:nth-of-type(n + 3) {
margin-top: 1rem;
}
}

.title {
font-size: .75rem;
font-size: 0.75rem;
}

.count {
Expand All @@ -47,7 +47,7 @@
}
}

@media screen and (min-width: 1000px) {
@media screen and (width >= 1000px) {
display: flex;
align-items: center;

Expand All @@ -61,4 +61,4 @@
margin-top: 0;
}
}
}
}
5 changes: 3 additions & 2 deletions src/sections/hex-mixer/Mixer/Mixer.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
height: 1rem;
margin: 0 1rem;

&::before, &::after {
&::before,
&::after {
position: absolute;
content: "";
background: #fff;
Expand Down Expand Up @@ -55,4 +56,4 @@
color: #999;
cursor: not-allowed;
}
}
}

0 comments on commit b8e4b1d

Please sign in to comment.