From d1195cf4e38d4919bc0ad9a7dfe91be1df27cf6d Mon Sep 17 00:00:00 2001 From: Tykayn Date: Thu, 23 May 2024 22:21:20 +0200 Subject: [PATCH] up template --- ordre-du-jour/odj2/src/app/app.component.html | 4 ++-- ordre-du-jour/odj2/src/app/app.component.scss | 17 ++++++++++------- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/ordre-du-jour/odj2/src/app/app.component.html b/ordre-du-jour/odj2/src/app/app.component.html index 9573ec58..73d80113 100644 --- a/ordre-du-jour/odj2/src/app/app.component.html +++ b/ordre-du-jour/odj2/src/app/app.component.html @@ -16,7 +16,7 @@ (click)="setSubject(i)" *ngFor="let s of subjects; index as i" [ngClass]="{ active: (currentSubjectId === i) , 'is-finished': s.finished}"> - {{s.id}}) {{ s.title }} + {{s.id}}) 🎉 🗒️ {{ s.title }}

@@ -40,7 +40,7 @@

-

🎉

+

sujet actuel dans les temps impartis diff --git a/ordre-du-jour/odj2/src/app/app.component.scss b/ordre-du-jour/odj2/src/app/app.component.scss index df88b5d7..1411308a 100644 --- a/ordre-du-jour/odj2/src/app/app.component.scss +++ b/ordre-du-jour/odj2/src/app/app.component.scss @@ -64,11 +64,12 @@ main { position: relative; } -textarea{ +textarea, pre{ border: 1px solid #dedede; padding: 1rem; width : 100%; margin-bottom: 1.5em; + overflow-x: auto; } .angular-logo { max-width: 9.2rem; @@ -224,12 +225,6 @@ button, display: inline-block; } -pre { - width: 20rem; - padding: 0.5rem; - background: lightslategrey; - overflow-x: auto; -} .is-clickable { cursor: pointer; @@ -248,6 +243,10 @@ pre { p{ margin-top: 1.5em; } + h1{ + max-height: 3em; + overflow: auto; + } } .rectangle-time-container{ background: grey; @@ -292,3 +291,7 @@ pre { margin-block: 1.5rem; } } + +.actions{ + margin-bottom: 100vh +}