This commit is contained in:
Ross Trottier 2024-07-11 18:51:16 -06:00
commit 0b68e2580f
2 changed files with 21 additions and 0 deletions

10
functions.php Normal file
View File

@ -0,0 +1,10 @@
<?php
add_action( 'wp_enqueue_scripts', 'twitchfront_enqueue_styles' );
function twitchfront_enqueue_styles() {
wp_enqueue_style(
'grand-sunrise-style',
get_stylesheet_uri()
);
}

11
style.css Normal file
View File

@ -0,0 +1,11 @@
/**
* Theme Name: Twitchfront
* Template: storefront
* ...other header fields
*/
.wc-block-grid__products .wc-block-grid__product-image img {
width: 250px !important;
object-fit: cover;
aspect-ratio: 1 / 1;
}