mirror of
https://github.com/neon-mmd/websurfx.git
synced 2024-11-26 07:58:20 -05:00
chores: fix duplicate footer selector and remove unknown pseudo-class
This commit is contained in:
parent
cb1bb3c2c3
commit
211e1b79a2
@ -76,11 +76,7 @@ button {
|
|||||||
|
|
||||||
.search_bar input::placeholder {
|
.search_bar input::placeholder {
|
||||||
color: var(--foreground-color);
|
color: var(--foreground-color);
|
||||||
opacity: 1; /* Firefox */
|
opacity: 1;
|
||||||
}
|
|
||||||
|
|
||||||
.search_bar input::input-placeholder { /* Edge 12 -18 */
|
|
||||||
color: var(--foreground-color);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.search_bar button {
|
.search_bar button {
|
||||||
@ -241,20 +237,21 @@ button {
|
|||||||
|
|
||||||
/* styles for the footer and header */
|
/* styles for the footer and header */
|
||||||
|
|
||||||
header,
|
|
||||||
footer {
|
header {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
background: var(--background-color);
|
background: var(--background-color);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
padding: 2rem 3rem;
|
padding: 2rem 3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
|
width: 100%;
|
||||||
|
background: var(--background-color);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
padding: 1.7rem 1.7rem 4rem;
|
padding: 1.7rem 1.7rem 4rem;
|
||||||
gap: 1.8rem;
|
gap: 1.8rem;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user