Skip to content
This repository was archived by the owner on Oct 1, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/undernet.bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion dist/undernet.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/undernet.css.map

Large diffs are not rendered by default.

Binary file modified dist/undernet.css.zip
Binary file not shown.
Binary file modified dist/undernet.js.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/undernet.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/undernet.min.css.map

Large diffs are not rendered by default.

Binary file modified dist/undernet.modules.js.zip
Binary file not shown.
Binary file modified dist/undernet.scss.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/download.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Going this route allows for far more customization, but do so at your own risk.
- SCSS: [Download](https://github.com/geotrev/undernet/raw/master/dist/undernet.scss.zip)
- JS: [Download](https://github.com/geotrev/undernet/raw/master/dist/undernet.modules.js.zip)

You can also install with npm or yarn. See the [JavaScript](/docs/overview/javascript) and [JavaScript](/docs/overview/javascript) articles for more details.
You can also install with npm or yarn. See the [JavaScript](/docs/overview/javascript) article for more details.

```shell
$ npm install undernet
Expand Down
2 changes: 1 addition & 1 deletion docs/spacing.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If the default value of `$global-space` isn't the right size, don't worry, there

### Custom Sizes With Sides

Define a spacing size with a side, e.g. `has-padding-X-Y`, where `X` is the side and `Y` is the side.
Define a spacing size with a side, e.g. `has-padding-X-Y`, where `X` is the side and `Y` is the size.

<div class="filler-bg has-padding-left-1 has-no-padding-top has-no-padding-right has-no-padding-bottom">
.has-padding-left-1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "undernet",
"version": "2.2.0",
"version": "2.2.1",
"homepage": "https://undernet.io",
"description": "Undernet is a Front-End Framework for Modern Web Development",
"main": "js/dist/undernet.js",
Expand Down
2 changes: 2 additions & 0 deletions scss/components/_modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

&[data-visible="true"] {
opacity: 1;
cursor: pointer;
pointer-events: auto;
}

Expand All @@ -46,6 +47,7 @@
position: relative;
flex-flow: column nowrap;
display: flex;
cursor: default;

// windows high contrast mode
border: 1px solid transparent;
Expand Down
2 changes: 1 addition & 1 deletion scss/undernet.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
* @license MIT (https://github.com/geotrev/undernet/blob/master/LICENSE)
* Undernet v2.2.0 (https://undernet.io)
* Undernet v2.2.1 (https://undernet.io)
* Copyright 2017-2018 George Treviranus
*/

Expand Down
4 changes: 2 additions & 2 deletions src/components/SideNav/SideNav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
background: #fbfbfb;

.side-nav-wrapper {
padding: 0 0 32px 0;
padding: 0;

.side-nav-expand {
background: $white;
Expand Down Expand Up @@ -40,7 +40,7 @@
}

.side-nav-menu {
padding: 32px 32px 8px 32px;
padding: 32px 32px 40px 32px;

h4 {
color: $black;
Expand Down
1 change: 1 addition & 0 deletions src/layouts/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { Home, Docs, Examples } from "pages"

// favicons
import "assets/icons/favicon.ico"
import "assets/icons/favicon-16x16.png"
import "assets/icons/favicon-32x32.png"
import "assets/icons/favicon-96x96.png"
// apple
Expand Down