Compare commits
3 commits
43f66d8178
...
848754c615
| Author | SHA1 | Date | |
|---|---|---|---|
| 848754c615 | |||
| 2ae30754f0 | |||
| 5b5944e229 |
5 changed files with 22 additions and 26 deletions
|
|
@ -318,7 +318,7 @@ div {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Grid
|
// Grid
|
||||||
.grid {
|
.dis_grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-gap: config.$space_basic;
|
grid-gap: config.$space_basic;
|
||||||
|
|
||||||
|
|
@ -332,15 +332,15 @@ div {
|
||||||
margin: config.$width_border_io;
|
margin: config.$width_border_io;
|
||||||
padding: config.$space_half;
|
padding: config.$space_half;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
.grid_column_2 {
|
&.grid_column_2 {
|
||||||
grid-template-columns: max-content max-content;
|
grid-template-columns: max-content max-content;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.grid_column_4 {
|
&.grid_column_4 {
|
||||||
grid-template-columns: max-content max-content max-content max-content;
|
grid-template-columns: max-content max-content max-content max-content;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sprites
|
// Sprites
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
|
@use "sass:map";
|
||||||
|
|
||||||
@use "../global/config";
|
@use "../global/config";
|
||||||
@use "../global/common";
|
@use "../global/common";
|
||||||
@use "../elements/interactive";
|
@use "../elements/interactive";
|
||||||
@use "../mixins/media_query" as *;
|
@use "../mixins/media_query" as *;
|
||||||
|
|
||||||
@use "sass:map";
|
|
||||||
|
|
||||||
// Root
|
// Root
|
||||||
// -----------------------------------------------------------------------------
|
// -----------------------------------------------------------------------------
|
||||||
html {
|
html {
|
||||||
|
|
|
||||||
|
|
@ -58,20 +58,15 @@ table {
|
||||||
table-layout: fixed;
|
table-layout: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.flexible {
|
&.grid {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: auto 1fr auto;
|
||||||
|
border-bottom: 0;
|
||||||
|
|
||||||
|
thead,
|
||||||
|
tbody,
|
||||||
tr {
|
tr {
|
||||||
display: flex;
|
display: contents;
|
||||||
flex-flow: row nowrap;
|
|
||||||
align-items: stretch;
|
|
||||||
|
|
||||||
&:last-child td {
|
|
||||||
border-bottom: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
td.truncate {
|
|
||||||
flex: 1;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
@use "../global/config";
|
|
||||||
|
|
||||||
@use "sass:math";
|
@use "sass:math";
|
||||||
|
|
||||||
|
@use "../global/config";
|
||||||
|
|
||||||
//Sections for Media Queries
|
//Sections for Media Queries
|
||||||
@mixin forPhoneUp {
|
@mixin forPhoneUp {
|
||||||
@media (min-width: #{config.$screen_tiny - 1}) { @content; } //599px
|
@media (min-width: #{config.$screen_tiny - 1}) { @content; } //599px
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ footer {
|
||||||
|
|
||||||
nav > span,
|
nav > span,
|
||||||
nav label,
|
nav label,
|
||||||
|
.group_nav > span,
|
||||||
.a_button {
|
.a_button {
|
||||||
@extend %basic;
|
@extend %basic;
|
||||||
border: config.$width_border_io solid transparent;
|
border: config.$width_border_io solid transparent;
|
||||||
|
|
@ -31,12 +32,12 @@ footer {
|
||||||
@extend .button_io;
|
@extend .button_io;
|
||||||
}
|
}
|
||||||
|
|
||||||
.group-input {
|
.group_nav {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: row nowrap;
|
flex-flow: row nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.group-input-wrap {
|
.wrap_input {
|
||||||
border: config.$width_border_io solid transparent;
|
border: config.$width_border_io solid transparent;
|
||||||
padding: config.$padding_basic;
|
padding: config.$padding_basic;
|
||||||
background-color: config.$color_back_io;
|
background-color: config.$color_back_io;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue