-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: поправил неправильный ресайз главного контентного блока на главн…
…ой странице при разрешении < 320 пикселей в ширину, также исправлена проблема с хедером при ресайзе < 320
- Loading branch information
Showing
3 changed files
with
6 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
<template> | ||
<header class="flex justify-between items-center py-32-16 px-16-16"> | ||
<TheLogo /> | ||
<TheLogo class="mr-32-8" /> | ||
<GeneralNav | ||
class="general-nav nav flex gap-32-16 items-center" | ||
class="general-nav nav flex gap-32-16 items-center text-right" | ||
:links="[ | ||
{ to: { name: 'map' }, text: 'Карта сайта', }, | ||
{ to: { name: 'settings' }, text: '⚙️', class: ['settings-emoji', 'emoji'], ariaLabel: 'Настройки сайта', rel: 'nofollow' }, | ||
{ to: { name: 'settings' }, text: '⚙️', class: ['text-28-18', 'emoji'], ariaLabel: 'Настройки сайта', rel: 'nofollow' }, | ||
]" | ||
/> | ||
</header> | ||
</template> | ||
|
||
<style lang="sass" scoped> | ||
.general-nav :deep(.settings-emoji) | ||
@apply text-28-18 | ||
</style> |