mirror of
https://github.com/odoo/design-themes.git
synced 2025-10-07 01:18:52 +07:00
6e2840ee64
Removing the container padding in some cases may be fine but cannot
be done because would create horizontal scrollbars in full-width mode
or simply on mobile devices.
To further improve with task-2241779
closes odoo/design-themes#515
X-original-commit: 2ed70c99c9
Signed-off-by: Quentin Smetz (qsm) <qsm@odoo.com>
16 lines
518 B
XML
16 lines
518 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
<template id="s_images_wall" inherit_id="website.s_images_wall">
|
|
<!-- Section -->
|
|
<xpath expr="//section" position="attributes">
|
|
<attribute name="class" add="o_cc o_cc5 o_spc-medium pt96" remove="o_spc-small pt24" separator=" "/>
|
|
</xpath>
|
|
<!-- Content -->
|
|
<xpath expr="//*[hasclass('container')]" position="attributes">
|
|
<attribute name="class" add="container-fluid" remove="container" separator=" "/>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|