Skip to content

Commit

Permalink
refactor: apply fixes from new stylelint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsandoz committed Feb 9, 2024
1 parent 5f32a05 commit 110657b
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 16 deletions.
5 changes: 1 addition & 4 deletions components/events/st-event.vue
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,7 @@ export default Vue.extend({
.c-event__image {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
inset: 0;
z-index: -1;
height: 100%;
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,7 @@ export default Vue.extend({
margin-top: var(--st-length-spacing-xxs);
display: flex;
flex-wrap: wrap;
column-gap: var(--st-length-spacing-xs);
row-gap: var(--st-length-spacing-xxs);
gap: var(--st-length-spacing-xxs) var(--st-length-spacing-xs);
font-size: 0.8em;
align-items: center;
}
Expand Down
3 changes: 1 addition & 2 deletions components/news/st-news-list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,7 @@ export default Vue.extend({
*/
display: grid;
grid-template-columns: repeat(auto-fit, minmax(274px, 1fr));
column-gap: var(--st-length-spacing-s);
row-gap: var(--st-length-spacing-m);
gap: var(--st-length-spacing-m) var(--st-length-spacing-s);
}
.c-news-list__entry {
Expand Down
3 changes: 1 addition & 2 deletions components/st-breadcrumb.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ export default Vue.extend({
.c-breadcrumb__list {
display: flex;
flex-wrap: wrap;
column-gap: 0.5em;
row-gap: 0.5em;
gap: 0.5em;
}
.c-breadcrumb__item {
Expand Down
5 changes: 1 addition & 4 deletions components/st-flickr-album-link.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@ export default Vue.extend({
.c-flickr-album-link__overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
inset: 0;
background: linear-gradient(0deg, rgba(0 0 0 / 90%) 0, transparent 50%, transparent);
}
Expand Down
3 changes: 1 addition & 2 deletions components/tchoukup/st-tchoukup-list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@ export default Vue.extend({
*/
display: grid;
grid-template-columns: repeat(auto-fit, minmax(274px, 1fr));
column-gap: var(--st-length-spacing-s);
row-gap: var(--st-length-spacing-m);
gap: var(--st-length-spacing-m) var(--st-length-spacing-s);
}
.c-tchoukup-list__entry {
Expand Down
1 change: 1 addition & 0 deletions pages/competitions/_competition/_season/match/_matchId.vue
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,7 @@ export default Vue.extend({
font-size: 1.8em;
}
}
@media (--lg-and-up) {
.c-match__score {
margin: var(--st-length-spacing-l);
Expand Down

0 comments on commit 110657b

Please sign in to comment.