mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
23 lines
443 B
CSS
23 lines
443 B
CSS
.airbase-icon {
|
|
align-items: center;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: center;
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.airbase-icon[data-coalition="red"] svg * {
|
|
stroke: var(--unit-background-red);
|
|
}
|
|
|
|
.airbase-icon[data-coalition="blue"] svg * {
|
|
stroke: var(--unit-background-blue);
|
|
}
|
|
|
|
.airbase-icon[data-coalition="neutral"] svg * {
|
|
stroke: var(--unit-background-neutral);
|
|
}
|
|
|