mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 07:32:02 +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 {
|
.delete {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
display: flex;
|
||||||
right: 1.5rem;
|
right: 1.5rem;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
display: none;
|
|
||||||
gap: 0.5rem;
|
gap: 0.5rem;
|
||||||
padding: 0.5rem 0.25rem;
|
padding: 0.5rem 0.25rem;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -79,20 +79,21 @@
|
||||||
border-radius: var(--border-radius);
|
border-radius: var(--border-radius);
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
width: 3rem;
|
width: 3rem;
|
||||||
opacity: 0.6;
|
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
width: 1.5rem;
|
width: 1.5rem;
|
||||||
height: 1.5rem;
|
height: 1.5rem;
|
||||||
|
opacity: 0;
|
||||||
|
transition: 0.3s all ease-in-out;
|
||||||
color: var(--primary-foreground-color);
|
color: var(--primary-foreground-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: var(--overlay-color);
|
background-color: var(--overlay-color);
|
||||||
opacity: 1;
|
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
color: var(--color-trakt);
|
color: var(--color-trakt);
|
||||||
|
opacity: 1 !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -176,7 +177,9 @@
|
||||||
|
|
||||||
.actions {
|
.actions {
|
||||||
.delete {
|
.delete {
|
||||||
display: flex;
|
.icon {
|
||||||
|
opacity: 0.6;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -34,8 +34,8 @@ const URLsManager = () => {
|
||||||
</div>
|
</div>
|
||||||
<div className={styles['content']}>
|
<div className={styles['content']}>
|
||||||
{
|
{
|
||||||
streamingServerUrls.map((url: StreamingServerUrl, index: number) => (
|
streamingServerUrls.map((item: StreamingServerUrl) => (
|
||||||
<Item mode={'view'} key={index} {...url} {...actions} />
|
<Item mode={'view'} key={item.url} {...item} {...actions} />
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue