Selaa lähdekoodia

Login as teacher button

master
kj1352 5 vuotta sitten
vanhempi
commit
8ae200ed07
3 muutettua tiedostoa jossa 10 lisäystä ja 4 poistoa
  1. +4
    -4
      src/app/app.component.ts
  2. +2
    -0
      src/app/tabs/more/more.component.html
  3. +4
    -0
      src/app/tabs/more/more.component.scss

+ 4
- 4
src/app/app.component.ts Näytä tiedosto

@@ -1,10 +1,10 @@
import { Component } from '@angular/core';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'lms-app-new';
title = 'lms-app-new';
}

+ 2
- 0
src/app/tabs/more/more.component.html Näytä tiedosto

@@ -138,6 +138,8 @@
</ul>

<button class="logout-button"> Logout </button>

<button class="logout-button teacher-mode"> Login as Teacher </button>
</section>

</div>

+ 4
- 0
src/app/tabs/more/more.component.scss Näytä tiedosto

@@ -179,6 +179,10 @@
border-radius: 5px;
height: 50px;
font-size: 16px;

&.teacher-mode {
background-color: var(--teal-green);
}
}

.segment-list {