Skip to content

Commit

Permalink
Update css-generator.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jessuppi authored Aug 26, 2024
1 parent b7eeb04 commit c630ee3
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions inc/css-generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -4515,7 +4515,7 @@ function hovercraft_generate_css(){
}


/* woocommerce other */
/* woocommerce product details */

.price {
font-size: 24px !important;
Expand All @@ -4533,11 +4533,24 @@ function hovercraft_generate_css(){
margin-left: 0 !important;
}

@media screen and (max-width: 1200px) {
.product_meta {
display: block;
font-size: 14px;
margin-bottom: 30px;
color: #607D8B;
line-height: 2;
margin: 20px 0;
color: <?php echo $breadcrumbs_text_color; ?>;
}
}

@media screen and (min-width: 1200px) {
.product_meta {
display: block;
font-size: 14px;
line-height: 2;
margin: 30px 0;
color: <?php echo $breadcrumbs_text_color; ?>;
}
}

.sku_wrapper {
Expand Down

0 comments on commit c630ee3

Please sign in to comment.