dannycandle / FluidFox

A custom Firefox userChrome for mac OS.
GNU General Public License v3.0
36 stars 2 forks source link

Alignment issue in URL bar #3

Open glazed0 opened 1 year ago

glazed0 commented 1 year ago

I've noticed an alignment issue in the URL bar on MacOS 12.2.1 Firefox version 110.0b9 (64-bit) Developer Edition fy7b444gj7-BB 4mt8tu456e-BB

kucho commented 1 year ago

Hey @glazed0, you can fix it adding this to your userChrome.css:

 #urlbar-input-container {
   display: flex;
   align-items: center;
 }

 .urlbar-input-box {
   width: 100%;
 }