mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-21 05:15:27 +08:00
Fix invalid postion of before content in home page in Firefox Linux (#7429)
Some checks failed
SonarCloud Scan / SonarCloud (push) Failing after 3s
Some checks failed
SonarCloud Scan / SonarCloud (push) Failing after 3s
This commit is contained in:
parent
c54a7de827
commit
063a071228
1 changed files with 3 additions and 1 deletions
|
@ -29,9 +29,11 @@ defineProps({
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
margin-left: 18px;
|
margin-left: 18px;
|
||||||
|
display: flex;
|
||||||
&::before {
|
&::before {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 4px;
|
top: 50%;
|
||||||
|
transform: translateY(-50%);
|
||||||
left: -13px;
|
left: -13px;
|
||||||
width: 4px;
|
width: 4px;
|
||||||
height: 14px;
|
height: 14px;
|
||||||
|
|
Loading…
Reference in a new issue