]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - client/src/sass/include/_bootstrap-variables.scss
Fix tables width, paginators, button on mobile / touchscreens (#2695)
[github/Chocobozzz/PeerTube.git] / client / src / sass / include / _bootstrap-variables.scss
... / ...
CommitLineData
1$dropdown-link-active-bg: inherit;
2
3$modal-footer-border-width: 0;
4$modal-md: 600px;
5
6$grid-breakpoints: (
7 // Extra small screen / phone
8 xs: 0,
9 // Small screen / phone
10 sm: 576px,
11 // Medium screen / tablet
12 md: 768px,
13 // Large screen / desktop
14 lg: 900px,
15 // Extra large screens / wide desktops
16 xl: 1200px,
17 xxl: 1600px
18);
19
20@function breakpoint($label) {
21 @return map-get($grid-breakpoints, $label);
22}
23
24$container-max-widths: (
25 sm: 420px,
26 md: 720px,
27 lg: 900px,
28 xl: 1140px
29);
30
31$input-btn-focus-width: 0;
32$input-btn-focus-color: inherit;
33$input-focus-border-color: #ced4da;
34
35$nav-pills-link-active-bg: #F0F0F0;
36$nav-pills-link-active-color: #000;