21 lines
432 B
SCSS
21 lines
432 B
SCSS
|
@import "variables";
|
||
|
@import "./effects";
|
||
|
|
||
|
vn-supplier-address-index {
|
||
|
.address {
|
||
|
padding-bottom: $spacing-md;
|
||
|
|
||
|
&:last-child {
|
||
|
padding-bottom: 0;
|
||
|
}
|
||
|
& > a {
|
||
|
@extend %clickable;
|
||
|
box-sizing: border-box;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
width: 100%;
|
||
|
color: inherit;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
}
|
||
|
}
|