joelshepherd / tabliss

A beautiful, customisable New Tab page for Firefox, Chrome, and Edge.
https://tabliss.io
GNU General Public License v3.0
2.23k stars 294 forks source link

add setting to change where settings cog is #504

Open nonetrix opened 2 years ago

nonetrix commented 2 years ago

I would prefer if the settings was on the bottom right of the screen, as it is the settings cog will push down the time widget Screenshot_20220626_020740 Ideally something like this would be great Screenshot_20220626_021049 Screenshot_20220626_021320

eric-bracht commented 1 year ago

I have my time widget in the same spot, same problem. Would love to be able to customize position of the settings icon.

szamanr commented 1 year ago

this is already possible. add a widget "custom css" and paste this:

.Overlay {
  top: auto;
  bottom: 0px;
  left: auto;
  right: 0px;
}

adjust the values as you see fit (note that top: auto and left: auto is required because the widget by default has top: 0 and left: 0).