Skip to content

Commit

Permalink
Remove useless variables, fix select size, fix stars vertical spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
AsteroidusTv committed Aug 3, 2024
1 parent 0af52f1 commit 2f43434
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion styles/standard-assets/card.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
}

.standart-card-stars-text {
margin-bottom: -10px;
margin-bottom: -8px;
margin-top: 10px;
transform: translateX(-1px);
font-size: 17px;
Expand Down
4 changes: 0 additions & 4 deletions styles/standard-assets/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,6 @@
font-size: 18px;
}

.welcome-link {
font-size: var(--main-font-sizealertPopup)
}

.welcome-button {
font-size: 25px;
}
Expand Down
9 changes: 8 additions & 1 deletion styles/standard-assets/select.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
cursor: pointer;
}

/* Main score select */
/* Main score select */width
.main-score-select {
margin: 10px 17px -7px 17px;
width: 794px;
Expand All @@ -26,6 +26,13 @@
}
}

@media screen and (max-width: 833px) {
.main-score-select {
margin-bottom: -25px;
width: 833px;
}
}

@media screen and (max-width: 521px) {
.main-score-select {
margin-bottom: -25px;
Expand Down
8 changes: 5 additions & 3 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,15 @@
color: var(--main-color);
}

/* *::selection {
*::selection {
background-color: var(--border-color);
color: var(--main-background);
} */

}

body {
display: flex;
flex-direction: column;
align-items: center;
background-color: var(--main-background);
}

Expand Down

0 comments on commit 2f43434

Please sign in to comment.