DurstRechner/assets/style/stylesheet.css

51 lines
No EOL
925 B
CSS

.line-item-details {
.amount {
display: inline-block;
min-width: 1.5em;
}
.price {
display: inline-block;
min-width: 3em;
}
}
.product-list {
padding-bottom: 1em;
}
.currency-value::after {
content: ' €';
}
.quantity-value::after {
content: 'x ';
}
.name-value {
margin-left: 1em;
font-weight: bold;
}
[data-template] {
display: none !important;
}
.cart-items, .product-list, .alert, .navbar-brand, .settings-product-list {
user-select: none;
-webkit-user-select: none;
-webkit-user-drag: none;
}
img {
-webkit-user-drag: none;
-khtml-user-drag: none;
user-drag: none;
}
.product-box, .cart-items, .settings-product-list {
cursor: pointer;
}
.product-list {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
gap: .4em;
}
.product-box .card-body span {
word-wrap: break-word;
}