51 lines
1.3 KiB
SCSS
51 lines
1.3 KiB
SCSS
.tabs .tab-item {
|
|
.icon {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
margin: 6px 0 2px;
|
|
&.ico-home {
|
|
background-image: url('../img/tab-icons/ico-home.svg');
|
|
}
|
|
&.ico-home-selected {
|
|
background-image: url('../img/tab-icons/ico-home-selected.svg');
|
|
}
|
|
&.ico-receive {
|
|
background-image: url('../img/tab-icons/ico-receive.svg');
|
|
}
|
|
&.ico-receive-selected {
|
|
background-image: url('../img/tab-icons/ico-receive-selected.svg');
|
|
}
|
|
&.ico-settings {
|
|
background-image: url('../img/tab-icons/ico-settings.svg');
|
|
}
|
|
&.ico-settings-selected {
|
|
background-image: url('../img/tab-icons/ico-settings-selected.svg');
|
|
}
|
|
&.ico-scan {
|
|
background-image: url('../img/tab-icons/ico-scan.svg');
|
|
}
|
|
&.ico-scan-selected {
|
|
background-image: url('../img/tab-icons/ico-scan-selected.svg');
|
|
}
|
|
&.ico-send {
|
|
background-image: url('../img/tab-icons/ico-send.svg');
|
|
}
|
|
&.ico-send-selected {
|
|
background-image: url('../img/tab-icons/ico-send-selected.svg');
|
|
}
|
|
}
|
|
}
|
|
|
|
#tab-home, #tab-send {
|
|
.card, .list {
|
|
.icon {
|
|
color: $light-gray;
|
|
}
|
|
& > .item-heading {
|
|
font-weight: 700;
|
|
.icon {
|
|
color: $mid-gray;
|
|
}
|
|
}
|
|
}
|
|
}
|