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 10, 2024
1 parent a2459c3 commit eb5f6b6
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion inc/css-generator.php
Original file line number Diff line number Diff line change
Expand Up @@ -1266,10 +1266,16 @@ function hovercraft_generate_css(){
padding: 10px 20px;
text-decoration: none;
background: #ECEFF1;
border: 0;
border: 0 !important;
border-radius: 0 !important;
cursor: pointer;
}

.button {
border: 0 !important;
border-radius: 0 !important;
}

@media screen and (max-width: 1200px) {
.button-link {
width: 100%;
Expand Down Expand Up @@ -4179,6 +4185,30 @@ function hovercraft_generate_css(){

/* woocommerce */

.checkout-button {
background: <?php echo $default_link_color; ?>;
}

.checkout-button:hover {
background: <?php echo $default_hover_color; ?>;
}

@media screen and (max-width: 1200px) {
div.woocommerce-notices-wrapper {
margin-bottom: 20px;
}
}

@media screen and (min-width: 1200px) {
div.woocommerce-notices-wrapper {
margin-bottom: 30px;
}
}

div.woocommerce-notices-wrapper ul {
margin: 0;
}

@media screen and (max-width: 1200px) {
.woocommerce-result-count {
display: block;
Expand Down

0 comments on commit eb5f6b6

Please sign in to comment.