public function handle()
{
- CMSPage::where('id', '>', 45)->delete();
+ // CMSPage::where('id', '>', 45)->delete();
foreach (ProductType::all() as $item) {
$data = $item->getPageData(true);
$page = new CMSPage();
// Breakpoints in Rupture (https://github.com/jescalan/rupture)
$breakpoint-columns = 768px // NOTE: this should align with the 'sm' screen value in tailwind.config.js
-$breakpoint-menu = 1480px // This needs to match the MMenu activation setting in menu.js
+$breakpoint-menu = 1300px // This needs to match the MMenu activation setting in menu.js
rupture.scale = 0 400px 768px 1024px
rupture.scale-names = 'small' 'medium' 'large'
rupture.anti-overlap = -1px // Results in +below(1000px) being max-width: 999px and +above(1000px) being min-width: 1000px
<div class="contact-shortcut flex flex-col z-30 xs:hidden">
- <phone-link :number="$global->phone" class="contact-shortcut-tab mb-px inline-flex self-start bg-primary p-3 pr-10">
+ <phone-link :number="$global->phone" class="contact-shortcut-tab mb-px inline-flex self-start bg-contactshortcut p-3 pr-10">
<img class="contact-shortcut-icon" src="{{ asset('images/icon-phone.svg') }}" alt="{{ __('Téléphone') }}">
{{ $global->phone }}
</phone-link>
<div class="contact-shortcut-tab">
- <a href="/contact" class="bg-primary p-3 bg-primary flex items-center pr-16">
+ <a href="/contact" class="p-3 bg-contactshortcut flex items-center pr-16">
<img class="contact-shortcut-icon" src="{{ asset('images/icon-email.svg') }}" alt="{{ __('Contact') }}">
{!! __('Formulaire de contact') !!}
</a>
config.theme.extend.colors = {
...config.theme.extend.colors,
'primary': '#ec2645',
+ 'contactshortcut': '#ec2645',
};
module.exports = config;
extend: {
colors: {
'inherit': 'inherit',
+ 'contactshortcut':'#E72A63',
'primary': '#0EAADA',
'navy': '#152F4E',
'navy-dark': '#0C213A',