summaryrefslogtreecommitdiffstats
path: root/assets/sass/@primer/css/header
diff options
context:
space:
mode:
authoramzrk22020-04-14 20:58:19 +0800
committeramzrk22020-04-14 20:58:19 +0800
commitbaf7534870460015c194281ad98e1fef99911ef1 (patch)
treecc424e273de1953917a06e5536b2fc527ead78a3 /assets/sass/@primer/css/header
parentf01d08490b3f5f35eca026792d0efe239bda4ff9 (diff)
downloadhugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.tar.gz
hugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.tar.bz2
hugo-theme-fuji-baf7534870460015c194281ad98e1fef99911ef1.zip
Remove redundant Primer CSS
Diffstat (limited to 'assets/sass/@primer/css/header')
-rw-r--r--assets/sass/@primer/css/header/README.md25
-rw-r--r--assets/sass/@primer/css/header/header.scss37
-rw-r--r--assets/sass/@primer/css/header/index.scss2
3 files changed, 0 insertions, 64 deletions
diff --git a/assets/sass/@primer/css/header/README.md b/assets/sass/@primer/css/header/README.md
deleted file mode 100644
index a6938ea..0000000
--- a/assets/sass/@primer/css/header/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-bundle: "header"
-generated: true
----
-
-# Primer CSS: `header` bundle
-
-## Usage
-
-Primer CSS source files are written in [SCSS]. To include this Primer CSS module in your own build, ensure that your `node_modules` directory is listed in your Sass include paths, then import it with:
-
-```scss
-@import "@primer/css/header/index.scss";
-```
-
-## Build
-
-The `@primer/css` npm package includes a standalone CSS build of this module in `dist/header.css`.
-
-## License
-
-[MIT](https://github.com/primer/css/blob/master/LICENSE) © [GitHub](https://github.com/)
-
-
-[scss]: https://sass-lang.com/documentation/syntax#scss
diff --git a/assets/sass/@primer/css/header/header.scss b/assets/sass/@primer/css/header/header.scss
deleted file mode 100644
index 6549f9d..0000000
--- a/assets/sass/@primer/css/header/header.scss
+++ /dev/null
@@ -1,37 +0,0 @@
-.Header {
- z-index: 32; // TODO: Figure out z-index system
- display: flex;
- padding: $spacer-3;
- font-size: $h5-size;
- line-height: $lh-default;
- // stylelint-disable-next-line primer/colors
- color: $white-fade-70;
- background-color: $bg-gray-dark;
- align-items: center;
- flex-wrap: nowrap;
-}
-
-.Header-item {
- display: flex;
- margin-right: $spacer-3;
- align-self: stretch;
- align-items: center;
- flex-wrap: nowrap;
-}
-
-.Header-item--full {
- flex: auto;
-}
-
-.Header-link {
- font-weight: $font-weight-bold;
- color: $text-white;
- white-space: nowrap;
-
- &:hover,
- &:focus {
- // stylelint-disable-next-line primer/colors
- color: $white-fade-70;
- text-decoration: none;
- }
-}
diff --git a/assets/sass/@primer/css/header/index.scss b/assets/sass/@primer/css/header/index.scss
deleted file mode 100644
index 2301d32..0000000
--- a/assets/sass/@primer/css/header/index.scss
+++ /dev/null
@@ -1,2 +0,0 @@
-@import "../support/index.scss";
-@import "./header.scss";