enlevé le chemin d'acces dans les infos

This commit is contained in:
hugogogo
2021-03-02 15:05:14 +01:00
parent 34bed77eac
commit 28cc00b198
2 changed files with 14 additions and 9 deletions

View File

@@ -135,16 +135,24 @@ body .container_main {
body aside.page_content {
top: calc(var(--nav-height) + 1px);
height: calc(100vh - var(--nav-height));
margin-right: var(--aside-margin);
/*
border-right: 1px solid lightgrey;
*/
}
/* asides elements only have width if they have a child*/
body aside.page_content .table_box {
width: calc(var(--aside-left-width) - var(--aside-margin));
width: calc(var(--aside-left-width) - 2 * var(--aside-margin));
margin: var(--aside-margin) 0px var(--aside-margin) var(--aside-margin);
/*border-box so changing padding has no effect on total width*/
box-sizing: border-box;
padding: var(--gap-unit);
/*for style*/
/*
*/
border-left: 1px solid lightgrey;
}
/*to put space between elements*/
body aside.page_content .table_box > * {
margin-bottom: var(--gap-unit);
}