mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-28 09:21:00 +01:00
14 lines
190 B
CSS
14 lines
190 B
CSS
|
|
.appIcon {
|
||
|
|
max-height: 100%;
|
||
|
|
max-width: 100%;
|
||
|
|
overflow: auto;
|
||
|
|
flex: 1;
|
||
|
|
object-fit: contain;
|
||
|
|
scale: 0.8;
|
||
|
|
transition: scale 0.2s ease-in-out;
|
||
|
|
}
|
||
|
|
|
||
|
|
.appIcon:hover {
|
||
|
|
scale: 0.9;
|
||
|
|
}
|