65 lines
1.1 KiB
SCSS
65 lines
1.1 KiB
SCSS
|
.woocommerce-marketing-overview-welcome-card {
|
||
|
position: relative;
|
||
|
|
||
|
.woocommerce-card__body {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
@include breakpoint( '>960px' ) {
|
||
|
padding: 32px 108px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__hide-button {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
padding: 8px;
|
||
|
margin: 0;
|
||
|
border: none;
|
||
|
background: none;
|
||
|
color: $dark-gray-500;
|
||
|
overflow: hidden;
|
||
|
border-radius: $radius-round-rectangle;
|
||
|
position: absolute;
|
||
|
top: 10px;
|
||
|
right: 10px;
|
||
|
|
||
|
// Ensure that even SVG icons that don't include the .dashicon class are colored.
|
||
|
svg {
|
||
|
fill: currentColor;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
&:not(:disabled):not([aria-disabled='true']):not(.is-default):hover {
|
||
|
@include button-style__hover;
|
||
|
}
|
||
|
|
||
|
&:not(:disabled):not([aria-disabled='true']):not(.is-default):active {
|
||
|
@include button-style__active;
|
||
|
}
|
||
|
|
||
|
&[aria-disabled='true']:focus,
|
||
|
&:disabled:focus {
|
||
|
box-shadow: none;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
h3 {
|
||
|
font-size: 24px;
|
||
|
line-height: 32px;
|
||
|
font-weight: normal;
|
||
|
margin-left: 20px;
|
||
|
|
||
|
@include breakpoint( '<960px' ) {
|
||
|
font-size: 20px;
|
||
|
line-height: 26px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
img {
|
||
|
width: 231px;
|
||
|
flex: none;
|
||
|
}
|
||
|
}
|