Skip to content
Snippets Groups Projects
Commit 66c249e4 authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Correct display of the main page in HD-res (1366x728)

parent 10c18e0e
No related branches found
No related tags found
1 merge request!17Develop
......@@ -4,7 +4,7 @@ layout: default
<article class="body-wrapper margin-wrapper">
<div id="left-column"></div>
<div id="left-column" class="hide-in-lowres"></div>
<div class="narrower-article-div">
<header>
......
// RESPONSIVENESS OF LAYOUT
$MOBILE_DEVICES: 600px;
$TABLET_DEVICES: 1225px;
$TABLET_DEVICES: 1200px;
$LOW_RES: 1605px;
$HD_RES: 1930px;
......@@ -29,8 +29,11 @@ $HD_RES: 1930px;
.body-wrapper {
padding-left: 2%;
}
}
.hide-in-lowres {
display: none;
}
}
@media only screen and (min-width: $MOBILE_DEVICES) {
.index-flex {
......
......@@ -2,7 +2,7 @@
Gem::Specification.new do |spec|
spec.name = "jekyll-elixir-theme"
spec.version = "0.9.9"
spec.version = "0.9.10"
spec.authors = ["jacek.lebioda"]
spec.email = ["jacek.lebioda@uni.lu"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment