diff options
author | Jan <sentrycraft123@gmail.com> | 2023-08-03 22:11:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-03 22:11:10 +0200 |
commit | 5a7725e110ec586f70ce4a3c65799ee72169d1b8 (patch) | |
tree | 5261ba82abae7707db899003445d443515c70b59 | |
parent | 2519958aeac5ac4a59653be5a002a644401883f1 (diff) | |
download | FlightCore-5a7725e110ec586f70ce4a3c65799ee72169d1b8.tar.gz FlightCore-5a7725e110ec586f70ce4a3c65799ee72169d1b8.zip |
fix: Give thunderstore mod card images a background color (#471)
Give thunderstore mod card images a background color to prevent alpha issues
-rw-r--r-- | src-vue/src/components/ThunderstoreModCard.vue | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src-vue/src/components/ThunderstoreModCard.vue b/src-vue/src/components/ThunderstoreModCard.vue index 30ffbc68..54241e85 100644 --- a/src-vue/src/components/ThunderstoreModCard.vue +++ b/src-vue/src/components/ThunderstoreModCard.vue @@ -312,4 +312,8 @@ export default defineComponent({ margin-left: 10px; height: auto; } + +.image { + background-color: lightgray; +} </style> |