Skip to content

Commit

Permalink
Fix broken specificity
Browse files Browse the repository at this point in the history
  • Loading branch information
Eray Chumak committed Jan 1, 2024
1 parent ed2bd5b commit 04c17a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nameInput.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@
border-bottom: solid .1rem #e4943a;
}

form input:placeholder-shown + form button {
input:placeholder-shown + button {
opacity: .3;
pointer-events: none;
}

form button {
button {
grid-column: 2;
font-family: "Vidaloka";
font-size: 3rem;
Expand All @@ -41,7 +41,7 @@
cursor: pointer;
}

form input:not(:placeholder-shown) + form button:hover {
input:not(:placeholder-shown) + button:hover {
transform: scale(1);
}
</style>
Expand Down

0 comments on commit 04c17a1

Please sign in to comment.