mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
28 lines
454 B
SCSS
28 lines
454 B
SCSS
|
.components-tab-panel__tabs {
|
||
|
width: 100%;
|
||
|
position: relative;
|
||
|
margin:0 0 48px 0;
|
||
|
&::after {
|
||
|
content: '';
|
||
|
position: absolute;
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
height: 1px;
|
||
|
background-color: $color-gray-400;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
z-index: -1;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
padding: 16px 20px;
|
||
|
@include font(13, 16, 400);
|
||
|
color: $color-gray-900;
|
||
|
|
||
|
&.active-tab {
|
||
|
font-weight: 600;
|
||
|
box-shadow: 0px -4px 0px 0px $color-blueberry inset;
|
||
|
}
|
||
|
}
|
||
|
}
|