Skip to content

Commit

Permalink
Move main styles to folder
Browse files Browse the repository at this point in the history
  • Loading branch information
agatemosu committed Jul 22, 2024
1 parent 99e0803 commit ca14427
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tier list creator</title>
<link rel="icon" href="assets/icon.svg" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="./styles/main.css" />
<script defer src="script.js"></script>

<link rel="preload" href="assets/check.svg" as="image" />
Expand Down
6 changes: 3 additions & 3 deletions styles.css → styles/main.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@import "./styles/blackout.css";
@import "./styles/export.css";
@import "./blackout.css";
@import "./export.css";

:root {
--black: #000;
Expand Down Expand Up @@ -190,7 +190,7 @@ input[type="checkbox"] {
}

input[type="checkbox"]:checked + label::before {
background-image: url("./assets/check.svg");
background-image: url("/assets/check.svg");
background-color: var(--button-hover);
}

Expand Down

0 comments on commit ca14427

Please sign in to comment.