mirror of
https://github.com/zenorocha/clipboard.js.git
synced 2023-08-10 21:12:48 +03:00
Removes files that should belong only to master
This commit is contained in:
20
bower_components/primer-css/scss/_flex-table.scss
vendored
Normal file
20
bower_components/primer-css/scss/_flex-table.scss
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// Flex table 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.
|
||||
|
||||
.flex-table {
|
||||
display: table;
|
||||
}
|
||||
|
||||
// Place this on every "cell"
|
||||
.flex-table-item {
|
||||
display: table-cell;
|
||||
width: 1%;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
// Place this on the largest or most important "cell"
|
||||
.flex-table-item-primary {
|
||||
width: 99%;
|
||||
}
|
Reference in New Issue
Block a user