mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 16:59:12 +00:00
fix(web): improve responsiveness on settings pages (#1270)
* fix(web): truncate feed name and adjust margins This is to avoid clipping on narrow screens. Bug: https://i.imgur.com/Aw3FzRK.png * fix(web): fix boundaries and layout on feed page fix(web): align switches on download client, feed and notification page * fix(web): add truncate and margin to feed names * correct truncate change margin to padding * inherit text styles --------- Co-authored-by: martylukyy <35452459+martylukyy@users.noreply.github.com> Co-authored-by: Fabricio Silva <hi@fabricio.dev>
This commit is contained in:
parent
f89a25d645
commit
e6b3d6117e
3 changed files with 21 additions and 21 deletions
|
@ -137,7 +137,7 @@ function ListItem({ notification }: ListItemProps) {
|
|||
<NotificationUpdateForm isOpen={updateFormIsOpen} toggle={toggleUpdateForm} notification={notification} />
|
||||
|
||||
<div className="grid grid-cols-12 items-center py-2">
|
||||
<div className="col-span-2 sm:col-span-1 pl-1 py-0.5 sm:pl-5 flex items-center">
|
||||
<div className="col-span-2 sm:col-span-1 pl-1 py-0.5 sm:pl-6 flex items-center">
|
||||
<Checkbox
|
||||
value={notification.enabled}
|
||||
setValue={onToggleMutation}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue