aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/less/_home.less
diff options
context:
space:
mode:
authorNorwin <noerw@users.noreply.github.com>2020-11-17 05:33:19 +0000
committerGitHub <noreply@github.com>2020-11-17 00:33:19 -0500
commit75ebf7c5bd48e64d58aef9892ce6b6fbf69e5f1a (patch)
tree8d56d011c31e7b544476365d3410ff94a9a735e6 /web_src/less/_home.less
parentb83825253ed803221b3f78162a638d392534cd47 (diff)
downloadgitea-75ebf7c5bd48e64d58aef9892ce6b6fbf69e5f1a.tar.gz
gitea-75ebf7c5bd48e64d58aef9892ce6b6fbf69e5f1a.zip
fix media query edge case (#13546)
* fix media query edge case was failing for 768px width before * code review * define responsive breakpoints as less variables * add missing variables.less * rename variables, drop screen constraints * fix less import * Apply suggestions from code review Co-authored-by: silverwind <me@silverwind.io> * code review altough it doesnt matter, LESS lazy evals variables Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src/less/_home.less')
-rw-r--r--web_src/less/_home.less6
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/less/_home.less b/web_src/less/_home.less
index 707c873279..fb31bedfa9 100644
--- a/web_src/less/_home.less
+++ b/web_src/less/_home.less
@@ -4,7 +4,7 @@
}
.hero {
- @media only screen and (max-width: 767px) {
+ @media @mediaSm {
h1 {
font-size: 3.5em;
}
@@ -14,7 +14,7 @@
}
}
- @media only screen and (min-width: 768px) {
+ @media @mediaMdAndUp {
h1 {
font-size: 5.5em;
}
@@ -52,7 +52,7 @@
footer {
.ui.container .left,
.ui.container .right {
- @media only screen and (max-width: 880px) {
+ @media (max-width: 880px) {
display: block;
text-align: center;
float: none;