-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Link): rm margin from icon (#7579)
h2. Описание Удаляем `margin`, т.к.: - сейчас расчёт такой, что иконка всегда после текста, а она может быть перед текстом; - обычный пробел сам по себе и так компенсирует отступ, чтобы текст и иконка не слипались; - по прошедшим e2e тестам видно, что `margin` не нужен. h2. Изменения Заменил в доках обычный пробел на `&npsp;`, т.к. логичнее использовать его, чтобы иконка не переносилась без текста. h2. Скриншот <img width="707" alt="image" src="https://github.com/VKCOM/VKUI/assets/5850354/e904297a-cc8b-4c86-a826-85fd5df699f7"> h2. Release notes h2. Исправления - Link: из CSS удалён зашитый отступ справа в `4px`, который выставлялся иконке. Был расчёт, что иконка всегда справа, но она может быть и слева, в этом раскладе появлялся ненужный отступ слева. Было решено отдать пользователю управлять отступами. Поэтому, если вам требуется отступ, используйте неразрывный пробел: либо через HTML-код ` `, ```diff <Link href="https://google.com" target="_blank"> - https://google.com <Icon24ExternalLinkOutline width={16} height={16} /> + https://google.com <Icon24ExternalLinkOutline width={16} height={16} /> </Link> ``` либо через сочетания клавиш _⌥ + ␣_ (на **MacOS**).
- Loading branch information
Showing
5 changed files
with
10 additions
and
7 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
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
4 changes: 2 additions & 2 deletions
4
.../__image_snapshots__/link-state-focus-visible-android-chromium-light-1-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.