Skip to content

Commit

Permalink
CSS tweaks (#34)
Browse files Browse the repository at this point in the history
* fix text-overflow on side menu

* Rename to usage

* scrollbar fix
  • Loading branch information
osterman authored May 11, 2018
1 parent b7caf0c commit e453330
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion content/geodesic/module/usage/_index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
title: "Use"
title: "Usage"
excerpt: ""
---
# Prerequisites
Expand Down
14 changes: 13 additions & 1 deletion static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,13 @@ article > aside .menu .dd-item li {
text-overflow: ellipsis;
}

aside#left-sidebar .menu .dd-item > div a {
width: 100%;
display: inline-block;
overflow: hidden;
text-overflow: ellipsis;
}

aside#left-sidebar .menu .dd-item.active > div * {
font-weight: bold;
border-bottom: 0;
Expand Down Expand Up @@ -649,9 +656,14 @@ div.calendly-badge-widget {
float: left;
width: 30%;
height: 200px;
overflow: scroll;
overflow-y: hidden;
margin-right: 35px;
}

.homepage > .category:hover, .homepage > .category:active, .homepage > .category:focus {
overflow-y: auto;
}

.homepage ul {
display: block;
list-style: none;
Expand Down

0 comments on commit e453330

Please sign in to comment.