OLD | NEW |
1 // This file is part of website-defaults | 1 // This file is part of website-defaults |
2 // Copyright (C) 2016-present eyeo GmbH | 2 // Copyright (C) 2016-present eyeo GmbH |
3 // | 3 // |
4 // website-defaults is free software: you can redistribute it and/or | 4 // website-defaults is free software: you can redistribute it and/or |
5 // modify it under the terms of the GNU General Public License as published by | 5 // modify it under the terms of the GNU General Public License as published by |
6 // the Free Software Foundation, either version 3 of the License, or | 6 // the Free Software Foundation, either version 3 of the License, or |
7 // (at your option) any later version. | 7 // (at your option) any later version. |
8 // | 8 // |
9 // website-defaults is distributed in the hope that it will be useful, | 9 // website-defaults is distributed in the hope that it will be useful, |
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 // but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 } | 56 } |
57 | 57 |
58 @media(min-width: $desktop-breakpoint) | 58 @media(min-width: $desktop-breakpoint) |
59 { | 59 { |
60 .container | 60 .container |
61 { | 61 { |
62 width: $desktop-width; | 62 width: $desktop-width; |
63 } | 63 } |
64 } | 64 } |
65 | 65 |
66 @media(min-width: $large-desktop-breakpoint) | 66 @if $enable-large-desktop |
67 { | 67 { |
68 .container | 68 @media(min-width: $large-desktop-breakpoint) |
69 { | 69 { |
70 width: $large-desktop-width; | 70 .container |
| 71 { |
| 72 width: $large-desktop-width; |
| 73 } |
71 } | 74 } |
72 } | 75 } |
73 | 76 |
74 .clearfix:after, | 77 .clearfix:after, |
75 .clearfix:before | 78 .clearfix:before |
76 { | 79 { |
77 display: table; | 80 display: table; |
78 content: " "; | 81 content: " "; |
79 } | 82 } |
80 | 83 |
81 .clearfix:after | 84 .clearfix:after |
82 { | 85 { |
83 clear: both; | 86 clear: both; |
84 } | 87 } |
OLD | NEW |