Merge pull request #1904 from hydralauncher/feat/LBX-155
Some checks failed
Build / build (ubuntu-latest) (push) Has been cancelled
Build / build (windows-2022) (push) Has been cancelled

fix: notification item styling
This commit is contained in:
Chubby Granny Chaser
2025-12-26 22:54:13 +00:00
committed by GitHub
2 changed files with 8 additions and 0 deletions

View File

@@ -1,6 +1,7 @@
<div align="center"> <div align="center">
[<img src="https://raw.githubusercontent.com/hydralauncher/hydra/refs/heads/main/resources/icon.png" width="144"/>](https://help.hydralauncher.gg) [<img src="https://raw.githubusercontent.com/hydralauncher/hydra/refs/heads/main/resources/icon.png" width="144"/>](https://help.hydralauncher.gg)
<h1 align="center">Hydra Launcher</h1> <h1 align="center">Hydra Launcher</h1>
<p align="center"> <p align="center">

View File

@@ -11,6 +11,8 @@
transition: all ease 0.2s; transition: all ease 0.2s;
position: relative; position: relative;
opacity: 0.4; opacity: 0.4;
width: 100%;
text-align: left;
&:hover { &:hover {
background-color: rgba(255, 255, 255, 0.03); background-color: rgba(255, 255, 255, 0.03);
@@ -40,12 +42,17 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
background-color: globals.$background-color; background-color: globals.$background-color;
color: #fff;
img { img {
width: 100%; width: 100%;
height: 100%; height: 100%;
object-fit: cover; object-fit: cover;
} }
svg {
color: inherit;
}
} }
&__badge-picture { &__badge-picture {