2020-05-12 23:14:08 +00:00
|
|
|
.woocommerce-page #wpcontent,
|
|
|
|
.woocommerce-page.woocommerce_page_wc-admin #wpbody-content {
|
|
|
|
overflow-x: inherit !important; // Overwriting wc-admin css from elsewhere. Necessary to make the right-hand column 'stick'
|
2021-10-15 19:56:17 +00:00
|
|
|
position: relative;
|
2020-05-12 23:14:08 +00:00
|
|
|
}
|
|
|
|
|
2020-06-15 02:17:12 +00:00
|
|
|
.woocommerce-homescreen {
|
2020-05-12 23:14:08 +00:00
|
|
|
display: flex;
|
|
|
|
max-width: 1032px;
|
|
|
|
margin: 0 auto;
|
|
|
|
justify-content: space-between;
|
2020-10-22 22:13:14 +00:00
|
|
|
flex-direction: column;
|
2020-05-12 23:14:08 +00:00
|
|
|
|
2020-05-21 17:15:08 +00:00
|
|
|
.woocommerce-task-dashboard__container {
|
|
|
|
width: 100%;
|
2020-06-22 20:17:17 +00:00
|
|
|
margin-bottom: $gap-large;
|
2020-05-21 17:15:08 +00:00
|
|
|
}
|
|
|
|
|
2020-10-22 22:13:14 +00:00
|
|
|
&.two-columns {
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
|
|
.woocommerce-homescreen-column {
|
|
|
|
width: calc(50% - 12px);
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
width: 100%;
|
|
|
|
position: inherit;
|
|
|
|
top: auto;
|
|
|
|
}
|
|
|
|
}
|
2020-05-12 23:14:08 +00:00
|
|
|
|
2020-11-06 17:53:03 +00:00
|
|
|
.your-store-today {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:16:19 +00:00
|
|
|
@include breakpoint( '<782px' ) {
|
2020-10-22 22:13:14 +00:00
|
|
|
flex-direction: column;
|
2020-11-06 17:53:03 +00:00
|
|
|
|
|
|
|
.your-store-today {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-05-12 23:14:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-19 13:16:19 +00:00
|
|
|
@include breakpoint( '<782px' ) {
|
2020-05-12 23:14:08 +00:00
|
|
|
margin-left: -16px;
|
|
|
|
margin-right: -16px;
|
|
|
|
}
|
|
|
|
}
|
2020-10-22 22:13:14 +00:00
|
|
|
|
2020-06-15 02:17:12 +00:00
|
|
|
.woocommerce-homescreen-column {
|
2021-02-22 01:10:39 +00:00
|
|
|
width: 682px;
|
2020-11-06 17:53:03 +00:00
|
|
|
top: 100px;
|
2020-05-12 23:14:08 +00:00
|
|
|
margin: 0 auto;
|
|
|
|
align-self: flex-start;
|
2020-06-24 20:08:59 +00:00
|
|
|
|
|
|
|
> div {
|
|
|
|
margin-bottom: $gap-large;
|
|
|
|
}
|
2020-10-22 22:13:14 +00:00
|
|
|
|
2022-01-13 01:50:59 +00:00
|
|
|
.components-text + .woocommerce-badge {
|
|
|
|
margin-left: 16px;
|
|
|
|
}
|
|
|
|
|
2020-10-22 22:13:14 +00:00
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
width: 100%;
|
|
|
|
position: inherit;
|
|
|
|
top: auto;
|
|
|
|
}
|
2020-05-12 23:14:08 +00:00
|
|
|
}
|
2020-06-18 23:44:00 +00:00
|
|
|
|
|
|
|
.woocommerce-homescreen-card {
|
|
|
|
.components-card__header.is-size-large,
|
|
|
|
.components-card__header.is-size-medium {
|
|
|
|
min-height: 63px;
|
|
|
|
min-height: unset;
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto 24px;
|
|
|
|
|
|
|
|
// IE doesn't support `align-items` on grid container
|
2020-06-22 06:02:35 +00:00
|
|
|
|
2020-06-18 23:44:00 +00:00
|
|
|
& > * {
|
|
|
|
align-self: center;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.components-card__footer.is-size-large {
|
|
|
|
padding: 0 $gap-smaller;
|
|
|
|
}
|
|
|
|
}
|
2020-11-06 17:53:03 +00:00
|
|
|
|
|
|
|
.woocommerce-layout__inbox-panel-header.your-store-today {
|
|
|
|
display: none;
|
|
|
|
}
|