Skip to content

Commit

Permalink
unused css removed, css restructured
Browse files Browse the repository at this point in the history
  • Loading branch information
dpet committed Nov 12, 2024
1 parent 532f509 commit e8565f0
Show file tree
Hide file tree
Showing 9 changed files with 122 additions and 576 deletions.
240 changes: 0 additions & 240 deletions src/assets/style/button_effects.scss

This file was deleted.

28 changes: 20 additions & 8 deletions src/assets/style/components/navbar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,21 +29,33 @@
}
}

@keyframes run-button-success {
0%, 100% { background-color: initial; }
50% { background-color: MediumSeaGreen; }
}

@keyframes run-button-failure {
0%, 100% { background-color: initial; }
50% { background-color: red; }
}

.run-button{
background: #b26e0f;
margin-right: 2px;
}

.share-button{

&.success {
animation-name: run-button-success;
animation-duration: 0.5s;
}

&.failure {
animation-name: run-button-failure;
animation-duration: 0.5s;
}
}

.dropdown {

.dropdown-button {

}

.dropdown {
.dropdown-content {
display: none; // Hide dropdown by default
position: absolute;
Expand Down
Loading

0 comments on commit e8565f0

Please sign in to comment.