Skip to content

Commit

Permalink
Change basic table style
Browse files Browse the repository at this point in the history
  • Loading branch information
usox committed Oct 3, 2021
1 parent d1561f5 commit 23bf539
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/components/Album/AlbumView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,12 @@ table {
font-family: sans-serif;
min-width: 100%;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.308);
border: 1px #446683 solid;
}
table thead tr {
background-color: rgb(85, 57, 5);
background-color: #11171d;;
border-bottom: 1px solid #11171d;;
color: #ffffff;
text-align: left;
}
Expand All @@ -142,7 +144,7 @@ tbody tr:nth-of-type(even) {
}
table tbody tr:last-of-type {
border-bottom: 2px solid rgb(85, 57, 5);
border-bottom: 2px #446683 solid;
}
.playButton {
Expand Down
6 changes: 4 additions & 2 deletions src/components/Artist/ArtistView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,12 @@ table {
font-family: sans-serif;
width: 90%;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.308);
border: 1px #446683 solid;
}
table thead tr {
background-color: rgb(85, 57, 5);
background-color: #11171d;;
border-bottom: 1px solid #11171d;;
color: #ffffff;
text-align: left;
}
Expand All @@ -114,6 +116,6 @@ tbody tr:nth-of-type(even) {
}
table tbody tr:last-of-type {
border-bottom: 2px solid rgb(85, 57, 5);
border-bottom: 2px #446683 solid;
}
</style>

0 comments on commit 23bf539

Please sign in to comment.