feat: 为导航栏使用 nav-link style 的弹窗增加更多的对齐样式

补一下 commit message(
This commit is contained in:
Tinhone 2023-08-09 23:57:57 +08:00
parent c37d8cd1aa
commit 7378a6db5d

View File

@ -8,7 +8,7 @@
line-height: normal;
&::before {
content: "";
content: '';
position: absolute;
top: calc(100% - 4px);
left: 8px;
@ -26,7 +26,7 @@
html[data-navbar-link-popup-content-align-style='left'] &,
&.left {
justify-content: left;
justify-content: flex-start;
}
html[data-navbar-link-popup-content-align-style='center'] &,
@ -36,6 +36,6 @@
html[data-navbar-link-popup-content-align-style='right'] &,
&.right {
justify-content: right;
justify-content: flex-end;
}
}
}