Skip to content

Instantly share code, notes, and snippets.

@tejastank
Created January 21, 2023 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tejastank/f2204264ba771ec5b442a6b2745dbe18 to your computer and use it in GitHub Desktop.
Save tejastank/f2204264ba771ec5b442a6b2745dbe18 to your computer and use it in GitHub Desktop.
odoo 16, css website fix common
.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