91a010ea32a409475b522cb3474ab9fd5968317d
[kivitendo-erp.git] / SL / Layout / MobileLogin.pm
1 package SL::Layout::MobileLogin;
2
3 use strict;
4 use parent qw(SL::Layout::Base);
5 use SL::Layout::MaterialStyle;
6 use SL::Layout::MaterialMenu;
7
8 sub get_stylesheet_for_user {
9   # overwrite kivitendo fallback
10   'css/material';
11 }
12
13 sub init_sub_layouts {
14   [
15     SL::Layout::None->new,
16     SL::Layout::MaterialStyle->new,
17     SL::Layout::MaterialMenu->new,
18   ]
19 }
20
21 1;