mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
18 lines
289 B
SCSS
18 lines
289 B
SCSS
|
.components-base-control {
|
||
|
&__label {
|
||
|
color: $color-gray-900;
|
||
|
@include font(13, 16, 600);
|
||
|
margin: 0 0 8px 0;
|
||
|
text-transform: none;
|
||
|
}
|
||
|
|
||
|
&__input {
|
||
|
border: 1px solid $color-gray-700;
|
||
|
border-radius: 2px;
|
||
|
box-shadow: none;
|
||
|
&:focus{
|
||
|
border-color:$color-blueberry;
|
||
|
}
|
||
|
}
|
||
|
}
|