Skip to content

Commit

Permalink
updated all colors to hex
Browse files Browse the repository at this point in the history
  • Loading branch information
maitrakhatri committed Mar 25, 2022
1 parent a6ade97 commit 9591ed1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CSS/Components/modal/modal.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.modal .card-body {
border-bottom: 0.063rem solid black;
border-bottom: 0.063rem solid #000000;
}

.modal .card-action {
Expand Down
8 changes: 4 additions & 4 deletions CSS/Components/toast/toast.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
.snackbar {
background-color: rgb(51, 51, 51);
background-color: #333333;
border-radius: .5rem;
display: inline-flex;
align-items: center;
gap: 1rem;
padding: .15rem .75rem;
color: white;
color: #ffffff;
}

.snackbar a {
text-decoration: none;
color: blueviolet;
color: #8a2be2;
}

.snackbar a, .snackbar i {
Expand All @@ -19,7 +19,7 @@

.snackbar a:hover,.snackbar i img:hover {
cursor: pointer;
background-color:rgba(128, 128, 128, 0.26);
background-color:#80808042;
}

.snackbar button {
Expand Down

0 comments on commit 9591ed1

Please sign in to comment.