In this {{ page.format }}: @@ -39,9 +39,7 @@ lang: en {% for id in page.participants %} {% for participant in site.data.rf2020.participants %} {% if participant.id == id %} - - {{ participant.fullname }} - + {{ participant.fullname }} {% endif %} {% endfor %} {% endfor %} diff --git a/_sass/layouts/event.scss b/_sass/layouts/event.scss index 2d55dda..08bda88 100644 --- a/_sass/layouts/event.scss +++ b/_sass/layouts/event.scss @@ -21,5 +21,11 @@ h3 { font-weight: bold; } + + .details { + div::last-of-type { + margin: 0; + } + } } } diff --git a/_sass/layouts/program.scss b/_sass/layouts/program.scss index 6bb1e77..360fc6d 100644 --- a/_sass/layouts/program.scss +++ b/_sass/layouts/program.scss @@ -6,6 +6,10 @@ li { display: inline-block; margin-right: $size-64; + + @include touch { + line-height: 1.5; + } } h2 { diff --git a/_sass/utils/position-utils.scss b/_sass/utils/position-utils.scss index 829aa4a..64579c3 100644 --- a/_sass/utils/position-utils.scss +++ b/_sass/utils/position-utils.scss @@ -29,4 +29,14 @@ justify-content: center; align-items: center; } + + &.flex-wrap { + flex-wrap: wrap; + } + + &.flex-wrap-m { + @include touch { + flex-wrap: wrap; + } + } } diff --git a/_sass/utils/responsive.scss b/_sass/utils/responsive.scss index 7def85f..78f5d77 100644 --- a/_sass/utils/responsive.scss +++ b/_sass/utils/responsive.scss @@ -56,3 +56,9 @@ @content; } } + +.hide-mobile { + @include touch { + display: none; + } +}