From 7eba26721e703fd887e2c87f4367a6339d2cfed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Mau=C3=9F?= <lukas.mauss@mni.thm.de> Date: Thu, 13 Feb 2020 17:12:45 +0100 Subject: [PATCH] Fix containers of action buttons in room view --- .../creator/room-creator-page/room-creator-page.component.scss | 3 ++- .../room-participant-page/room-participant-page.component.html | 2 +- .../room-participant-page/room-participant-page.component.scss | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/components/creator/room-creator-page/room-creator-page.component.scss b/src/app/components/creator/room-creator-page/room-creator-page.component.scss index b458225c6..eeb32b353 100644 --- a/src/app/components/creator/room-creator-page/room-creator-page.component.scss +++ b/src/app/components/creator/room-creator-page/room-creator-page.component.scss @@ -17,8 +17,9 @@ mat-card-content > :first-child { } .mat-icon-button { - width: 60%; // 100% + width: 100%; height: 75%; + border-radius: 0; color: var(--primary)!important; transition: all 0.3s; &:hover { diff --git a/src/app/components/participant/room-participant-page/room-participant-page.component.html b/src/app/components/participant/room-participant-page/room-participant-page.component.html index e83207063..aa2f25882 100644 --- a/src/app/components/participant/room-participant-page/room-participant-page.component.html +++ b/src/app/components/participant/room-participant-page/room-participant-page.component.html @@ -30,7 +30,7 @@ <mat-icon matBadge="{{commentCounter}}" matBadgeColor="primary" class="main-icon" [ngClass]="{'desktop' : deviceType === 'desktop'}">question_answer </mat-icon> - <h3>{{ 'room-page.create-comment' | translate}}</h3> <!-- *ngIf="deviceType === 'desktop'" --> + <h3>{{ 'room-page.create-comment' | translate}}</h3> </button> </mat-grid-tile> </mat-grid-list> diff --git a/src/app/components/participant/room-participant-page/room-participant-page.component.scss b/src/app/components/participant/room-participant-page/room-participant-page.component.scss index 54e71b7e2..c60c1dd5f 100644 --- a/src/app/components/participant/room-participant-page/room-participant-page.component.scss +++ b/src/app/components/participant/room-participant-page/room-participant-page.component.scss @@ -12,9 +12,10 @@ mat-card-content>:first-child { } .mat-icon-button { - width: 60%; // 100% + width: 100%; height: 75%; margin-bottom: 3%; + border-radius: 0; color: var(--primary)!important; } -- GitLab