Skip to content

Commit

Permalink
- updated ruby and docker image versions
Browse files Browse the repository at this point in the history
- fine tuned css to fix a jumpy issue when responsive
  • Loading branch information
girishranganathan committed Apr 22, 2019
1 parent b62aa0e commit 43a6c63
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source "https://rubygems.org"

ruby '2.5.1'
ruby '2.6.3'

gem 'materialize-sass'
#gem "jekyll", "~> 3.6.3"
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ DEPENDENCIES
tzinfo-data

RUBY VERSION
ruby 2.5.1p57
ruby 2.6.3p62

BUNDLED WITH
1.17.1
1.17.2
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ setup:
ADMIN=on bundle install

docker:
docker run --name layer5 --rm -p 4000:4000 -v `pwd`:"/srv/jekyll" jekyll/jekyll:3.7.3 bash -c "bundle install; jekyll serve --drafts --livereload"
docker run --name layer5 --rm -p 4000:4000 -v `pwd`:"/srv/jekyll" jekyll/jekyll:3.8.5 bash -c "bundle install; jekyll serve --drafts --livereload"
2 changes: 1 addition & 1 deletion _includes/partials/sidebar.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<div class="4u 12u(mobile) nav-sidebar" style="font-size:.9vw;">
<div class="4u 12u(mobile) nav-sidebar">
<div class="row">

<div class="col s6 offset-s5">
Expand Down
6 changes: 3 additions & 3 deletions _sass/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@

.sidebar-nav {
position: fixed;
top: 20%;
top: 7.5%;
width: 300px;
list-style: none;
margin: 0;
padding: 0;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
height: 100%;
height: calc(100% + 60px);
// height: calc(100% + 60px);
height: -moz-calc(100%);
padding-bottom: 60px;
#background-color: #111;
// background-color: #111;
z-index: 999;
overflow-y: auto;
will-change: transform;
Expand Down

0 comments on commit 43a6c63

Please sign in to comment.