Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/HybridApp/Components/Pages/Item/ItemPage.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ p:first-of-type {

img {
width: 25rem;
border-radius: 0.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
transition: box-shadow 0.3s ease;
}

img:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.description {
Expand Down
7 changes: 7 additions & 0 deletions src/WebApp/Components/Pages/Item/ItemPage.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ p:first-of-type {
img {
width: 25rem;
max-width: 50%;
border-radius: 0.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
transition: box-shadow 0.3s ease;
}

img:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.description {
Expand Down
7 changes: 7 additions & 0 deletions src/WebAppComponents/Catalog/CatalogListItem.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@

.catalog-product-image img {
max-width: 100%;
border-radius: 0.5rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
transition: box-shadow 0.3s ease;
}

.catalog-product-image img:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.catalog-product .catalog-product-content {
Expand Down