mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
fix: minor styles issues
This commit is contained in:
parent
274169770f
commit
9fa17da6e9
2 changed files with 9 additions and 6 deletions
|
|
@ -67,9 +67,9 @@
|
|||
|
||||
.delete {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
right: 1.5rem;
|
||||
top: 50%;
|
||||
display: none;
|
||||
gap: 0.5rem;
|
||||
padding: 0.5rem 0.25rem;
|
||||
align-items: center;
|
||||
|
|
@ -79,20 +79,21 @@
|
|||
border-radius: var(--border-radius);
|
||||
transform: translateY(-50%);
|
||||
width: 3rem;
|
||||
opacity: 0.6;
|
||||
|
||||
.icon {
|
||||
width: 1.5rem;
|
||||
height: 1.5rem;
|
||||
opacity: 0;
|
||||
transition: 0.3s all ease-in-out;
|
||||
color: var(--primary-foreground-color);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: var(--overlay-color);
|
||||
opacity: 1;
|
||||
|
||||
.icon {
|
||||
color: var(--color-trakt);
|
||||
opacity: 1 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -176,7 +177,9 @@
|
|||
|
||||
.actions {
|
||||
.delete {
|
||||
display: flex;
|
||||
.icon {
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -34,8 +34,8 @@ const URLsManager = () => {
|
|||
</div>
|
||||
<div className={styles['content']}>
|
||||
{
|
||||
streamingServerUrls.map((url: StreamingServerUrl, index: number) => (
|
||||
<Item mode={'view'} key={index} {...url} {...actions} />
|
||||
streamingServerUrls.map((item: StreamingServerUrl) => (
|
||||
<Item mode={'view'} key={item.url} {...item} {...actions} />
|
||||
))
|
||||
}
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue