fix back ground bug

This commit is contained in:
trochas
2026-01-11 20:56:39 +01:00
parent 6ed94c17b5
commit 0186370adc
4 changed files with 20 additions and 4 deletions

View File

@@ -56,6 +56,11 @@
padding: 0;
}
html,body{
width: 100%;
height: 100%;
}
body {
margin: 0;
font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen',
@@ -63,10 +68,12 @@ body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background: linear-gradient(135deg, var(--tint0) 0%, var(--tint1) 100%);
height: 100%;
color: var(--text);
transition: background 0.4s ease, color 0.4s ease;
font-weight: 400;
line-height: 1.6;
background-attachment: fixed;
}
.padding {

View File

@@ -5,6 +5,7 @@ function Admin() {
return (
<div>
<h1>Admin</h1>
rien pour l'instant
</div>
)
}

View File

@@ -118,4 +118,12 @@
.logo:hover {
transform: scale(1.1) rotateY(10deg);
}
}
.logoLink:hover{
border: 0px;
}
.logoLink{
border: 0px;
}

View File

@@ -12,7 +12,7 @@ function TopBar(){
return(
<div className="topBar">
<div className="toBarLeft">
<img className="logo" src="/Frisbyee_logo.png"/>
<Link className="logoLink" to="/"><img className="logo" src="/Frisbyee_logo.png"/></Link>
<h2>Frisbyee</h2>
</div>
<div className="toBarMidle">
@@ -23,8 +23,8 @@ function TopBar(){
</div>
<div className="topBarRight">
<SwitchThemeColor/>
<Login/>
<SwitchThemeColor/>
<Login/>
</div>
</div>
)