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

View File

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

View File

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

View File

@@ -12,7 +12,7 @@ function TopBar(){
return( return(
<div className="topBar"> <div className="topBar">
<div className="toBarLeft"> <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> <h2>Frisbyee</h2>
</div> </div>
<div className="toBarMidle"> <div className="toBarMidle">
@@ -23,8 +23,8 @@ function TopBar(){
</div> </div>
<div className="topBarRight"> <div className="topBarRight">
<SwitchThemeColor/> <SwitchThemeColor/>
<Login/> <Login/>
</div> </div>
</div> </div>
) )