mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-12 01:18:39 +08:00
Finish settings page
This commit is contained in:
parent
e72cc8a213
commit
b23a9a0fab
20 changed files with 692 additions and 433 deletions
|
@ -7,7 +7,7 @@
|
|||
}
|
||||
}
|
||||
|
||||
@mixin hide-input-field(){
|
||||
@mixin hide-input-field() {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
|
@ -18,7 +18,7 @@
|
|||
border-radius: 0;
|
||||
}
|
||||
|
||||
@mixin fake-input-field($border-radius:0){
|
||||
@mixin fake-input-field($border-radius:0) {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border: 1px solid $color-gray-600;
|
||||
|
@ -27,8 +27,19 @@
|
|||
border-radius: $border-radius;
|
||||
}
|
||||
|
||||
@mixin small-button{
|
||||
@mixin small-button {
|
||||
border-radius: 2px;
|
||||
padding: 6px 12px;
|
||||
@include font(13, 20, 400);
|
||||
}
|
||||
|
||||
@mixin vertical-layout-event-gap($gap:0) {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: $gap;
|
||||
}
|
||||
|
||||
@mixin horizontal-layout-even-gap($gap:0) {
|
||||
display: flex;
|
||||
gap: $gap;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue