Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
891 bytes
|
Line | |
---|
1 | // Minimum height for toolbar's in the highest density is difficult to determine because
|
---|
2 | // developers can project arbitrary content. We use a minimum value that ensures that most
|
---|
3 | // common content (e.g. icon buttons) does not exceed the row boundaries in highest density.
|
---|
4 | $minimum-height: 44px !default;
|
---|
5 |
|
---|
6 | $height-desktop: 64px !default;
|
---|
7 | $maximum-height-desktop: $height-desktop !default;
|
---|
8 | $minimum-height-desktop: $minimum-height !default;
|
---|
9 |
|
---|
10 | $height-mobile: 56px !default;
|
---|
11 | $maximum-height-mobile: $height-mobile !default;
|
---|
12 | $minimum-height-mobile: $minimum-height !default;
|
---|
13 |
|
---|
14 | $desktop-density-config: (
|
---|
15 | height: (
|
---|
16 | default: $height-desktop,
|
---|
17 | maximum: $maximum-height-desktop,
|
---|
18 | minimum: $minimum-height-desktop,
|
---|
19 | )
|
---|
20 | ) !default;
|
---|
21 |
|
---|
22 | $mobile-density-config: (
|
---|
23 | height: (
|
---|
24 | default: $height-mobile,
|
---|
25 | maximum: $maximum-height-mobile,
|
---|
26 | minimum: $minimum-height-mobile,
|
---|
27 | )
|
---|
28 | ) !default;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.