zen-browser / theme-components

📦 Some of @zen-browser's official themes and utility styles!
MIT License
33 stars 3 forks source link

Floating URLbar code is wrong #31

Closed LarveyOfficial closed 15 hours ago

LarveyOfficial commented 22 hours ago

For some reason, the code to center the URL bar is different on the repo vs what gets downloaded.

On the git:

    position: fixed !important;
    bottom: auto !important;
    top: 20vh !important;
    padding-left: 6px !important;
    padding-right: 8px !important;

    left: 18vw !important;
    right: 18vw !important;
    width: 64vw !important;

What is downloaded:

    position: absolute !important;
    bottom: auto !important;
    top: 20vh !important;
    padding-left: 6px !important;
    padding-right: 8px !important;

    left: 50%;
    transform: translateX(-50%);
    width: 64vw !important;

The one from the git works..

LarveyOfficial commented 22 hours ago

https://github.com/zen-browser/theme-components/blob/main/floating-urlbar/userChrome.css

NOCanoa commented 17 hours ago

@LarveyOfficial should be fixed

NOCanoa commented 15 hours ago

@LarveyOfficial @mauro-balades u can close