profil menu base

This commit is contained in:
2024-03-09 22:48:33 +01:00
committed by Wal
parent c14d0a9d21
commit 07e5fb3a73
4 changed files with 144 additions and 94 deletions

View File

@ -17,13 +17,8 @@
<div class="bodu">
<div class="container">
<div class="id"><a>{{id}}</a></div>
<div class="type"><a>{{type}}</a></div>
<div class="surname"><a>{{lastName}}</a></div>
<div class="firstname"><a>{{firstName}}</a></div>
<div class="infos"><button style="background-color:rgb(105,05,105);" >{{i18n("request.moreInfos")}} </button></div>
<div class="accept"><button style="background-color:rgb(0,105,50);">{{i18n("request.accept")}}</button></div>
<div class="refuse"><button style="background-color:rgb(105,0,0);">{{i18n("request.refuse")}}</button></div>
<div class="accept"><button style="background-color:rgb(0,105,50);">jdfhdfgj</button></div>
<div class="refuse"><button style="background-color:rgb(105,0,0);">dfkjghefkgj</button></div>
</div>
</div>
</template>
@ -32,11 +27,11 @@
.container{
color:white;
height:100px;
font-size:20px;
font-size:20px;
display:grid;
grid-template-columns:[firstCol-start]100px[firstCol-end secondCol-start]150px[secondCol-end thirdCol-start]200px[thirdCol-end fourthCol-start]150px[fourthCol-end]150px[fifthCol-end]150px[sixthCol-end]150px[endCol];
grid-template-columns:[firstCol-start]100px[firstCol-end secondCol-start]150px[endCol];
grid-template-areas:
"id type surname firstname infos accept refuse";
" accept refuse";
column-gap:10px;
}