summaryrefslogtreecommitdiffstats
path: root/assets/sass/@primer/css/table-object
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/table-object
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/table-object')
-rw-r--r--assets/sass/@primer/css/table-object/README.md25
-rw-r--r--assets/sass/@primer/css/table-object/index.scss1
-rw-r--r--assets/sass/@primer/css/table-object/table-object.scss20
3 files changed, 0 insertions, 46 deletions
diff --git a/assets/sass/@primer/css/table-object/README.md b/assets/sass/@primer/css/table-object/README.md
deleted file mode 100644
index 148fab2..0000000
--- a/assets/sass/@primer/css/table-object/README.md
+++ /dev/null
@@ -1,25 +0,0 @@
----
-bundle: "table-object"
-generated: true
----
-
-# Primer CSS: `table-object` 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/table-object/index.scss";
-```
-
-## Build
-
-The `@primer/css` npm package includes a standalone CSS build of this module in `dist/table-object.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/table-object/index.scss b/assets/sass/@primer/css/table-object/index.scss
deleted file mode 100644
index 295bcfb..0000000
--- a/assets/sass/@primer/css/table-object/index.scss
+++ /dev/null
@@ -1 +0,0 @@
-@import "./table-object.scss";
diff --git a/assets/sass/@primer/css/table-object/table-object.scss b/assets/sass/@primer/css/table-object/table-object.scss
deleted file mode 100644
index 353c732..0000000
--- a/assets/sass/@primer/css/table-object/table-object.scss
+++ /dev/null
@@ -1,20 +0,0 @@
-// TableObject is a module for creating dynamically resizable elements that
-// always sit on the same horizontal line (e.g., they never wrap). Using
-// tables means it's cross browser friendly.
-
-.TableObject {
- display: table;
-}
-
-// Place this on every "cell"
-.TableObject-item {
- display: table-cell;
- width: 1%;
- white-space: nowrap;
- vertical-align: middle;
-}
-
-// Place this on the largest or most important "cell"
-.TableObject-item--primary {
- width: 99%;
-}