Skip to content
Snippets Groups Projects
Unverified Commit 239d2d2b authored by Fredrik Jonsson's avatar Fredrik Jonsson Committed by GitHub
Browse files

Minor fixes to submission all table and status bar on small screens (#3825)

parent 491fe61b
No related branches found
No related tags found
1 merge request!76Merge up to 5.6.0
......@@ -3,17 +3,18 @@
background-color: $color--white;
border: 1px solid $color--light-mid-grey;
@include media-query(tablet-landscape) {
@include media-query($table-breakpoint) {
display: flex;
}
&__item {
padding: 20px;
display: block;
padding: 10px 20px;
border-block-end: 1px solid $color--light-mid-grey;
background-color: $color--white;
transition: background-color $quick-transition;
@include media-query(tablet-landscape) {
@include media-query($table-breakpoint) {
border-block-end: 0;
border-inline-end: 1px solid $color--light-mid-grey;
width: 100%;
......@@ -50,7 +51,7 @@
}
&__info {
@include media-query(tablet-landscape) {
@include media-query($table-breakpoint) {
margin-block-start: auto;
}
}
......@@ -59,20 +60,4 @@
width: 100%;
hyphens: auto;
}
&__link {
text-transform: uppercase;
font-weight: $weight--semibold;
transition: opacity $quick-transition;
@include media-query(tablet-landscape) {
opacity: 0;
pointer-events: none;
#{$root}__item:hover & {
opacity: 1;
pointer-events: all;
}
}
}
}
......@@ -72,6 +72,14 @@
width: initial;
}
&.selected {
display: none;
@include media-query($table-breakpoint) {
display: table-cell;
}
}
&.lead {
span {
@include media-query($table-breakpoint) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment