Skip to content

Commit dac3749

Browse files
authored
Merge pull request #682 from owncloud/small_css_fixes
Small css fix (used min instead of max)
2 parents 7bf9be7 + 0565be0 commit dac3749

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/css/header.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ body {
176176
margin: 0.25rem 0;
177177
}
178178

179-
@media screen and (width >= 799px) {
179+
@media screen and (width <= 799px) {
180180
.navbar-brand .navbar-item {
181181
align-items: center;
182182
display: flex;

src/css/owncloud.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ blockquote::before {
129129
/**
130130
* Supplemental Responsive Styles
131131
*/
132-
@media screen and (width >= 600px) {
132+
@media screen and (width <= 600px) {
133133
footer div.container div.row-full {
134134
margin-left: 0;
135135
width: 100%;

0 commit comments

Comments
 (0)