1
0
forked from PGL/Clyde

Fixed some css

This commit is contained in:
2024-04-01 11:43:42 +02:00
parent bce53305b3
commit 8442101c40
5 changed files with 47 additions and 22 deletions

View File

@@ -52,10 +52,11 @@ function getPP(){
<style scoped>
.container{
min-width:675px;
display:grid;
grid-template-columns:200px 900px;
grid-template-columns:10vw 50vw;
grid-template-rows:200px auto;
column-gap:30px;
column-gap:2.7%;
row-gap:45px;
grid-template-areas:
"profilPic globalInfos"
@@ -64,6 +65,7 @@ function getPP(){
.profilPic{
grid-area:profilPic;
width:100%;
}
.globalInfos {
@@ -73,8 +75,12 @@ function getPP(){
}
.body {
min-width:960px;
width:100%;
margin-bottom:10px;
display:flex;
align-items:center;
justify-content:center;
margin-top:5%;
}
.subContainter{
@@ -138,4 +144,12 @@ function getPP(){
column-gap:40px;
padding-left: 25px;
}
button{
font-size:15px;
height:50px;
width:100px;
border:none;
border-radius:20px;
}
</style>