Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit 213334c

Browse files
committed
Tables: Update table full class to be a modifer
1 parent 8410e05 commit 213334c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

demos/tables.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="utf-8">
55
<title>CSS Chassis - Tables</title>
6-
<meta name="description" content="Typography skeleton for styling">
6+
<meta name="description" content="Table style examples">
77
<meta name="viewport" content="width=device-width, initial-scale=1">
88
<link rel="stylesheet" href="../dist/css/chassis.css">
99
<link rel="stylesheet" href="demos.css">
@@ -88,7 +88,7 @@ <h3>Div Table</h3>
8888
<h3>Full Width Table</h3>
8989
<p>Here's a paragraph to show spacing around the table. Aenean lacinia bibendum nulla sed consectetur. Maecenas faucibus mollis interdum..</p>
9090

91-
<table class="table-fullwidth">
91+
<table class="table table-full">
9292
<thead class="table-head">
9393
<tr class="table-row">
9494
<th class="table-heading" scope="col">ID</th>

scss/atoms/tables/_tables.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,8 @@
1212
@include table(map-get($table-base, margin), map-get($table-base, font-size));
1313
}
1414

15-
.table-fullwidth {
15+
.table-full {
1616
width: 100%;
17-
@include table(map-get($table-base, margin), map-get($table-base, font-size));
1817
}
1918

2019
/* thead */

0 commit comments

Comments
 (0)