Created
January 21, 2023 12:13
-
-
Save tejastank/f2204264ba771ec5b442a6b2745dbe18 to your computer and use it in GitHub Desktop.
odoo 16, css website fix common
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.oe_website_sale .o_wsale_context_thumb_cover { | |
--o-wsale-card-thumb-fill-mode: unset; | |
} | |
#products_grid:not(.o_wsale_layout_list) td.oe_product { | |
padding-bottom: 7.5px; | |
border: 1px solid #80808036; | |
} | |
@media (min-width: 1400px){ | |
.container, .o_container_small, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl { | |
max-width: 95% !important; | |
} | |
} | |
@media (min-width: 1200px){ | |
.container, .o_container_small, .container-sm, .container-md, .container-lg, .container-xl { | |
max-width: 95% !important; | |
} | |
} | |
@media (min-width: 992px){ | |
.container, .o_container_small, .container-sm, .container-md, .container-lg { | |
max-width: 95% !important; | |
} | |
} | |
@media (min-width: 768px){ | |
.container, .o_container_small, .container-sm, .container-md { | |
max-width: 720px; | |
} | |
} | |
@media (min-width: 576px){ | |
.container, .o_container_small, .container-sm { | |
max-width: 540px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment