mirror of
https://github.com/zoriya/flood.git
synced 2025-12-20 06:05:15 +00:00
22 lines
309 B
SCSS
22 lines
309 B
SCSS
$transfer-data--download: $green;
|
|
$transfer-data--upload: $blue;
|
|
|
|
.transfer-data {
|
|
|
|
&--download {
|
|
color: $transfer-data--download;
|
|
|
|
.icon {
|
|
fill: $transfer-data--download;
|
|
}
|
|
}
|
|
|
|
&--upload {
|
|
color: $transfer-data--upload;
|
|
|
|
.icon {
|
|
fill: $transfer-data--upload;
|
|
}
|
|
}
|
|
}
|