Updated Linting

This commit is contained in:
Nile Walker 2021-02-16 09:07:01 -05:00
parent cfd3c04dc7
commit 0db09ddf5e
2 changed files with 1 additions and 10 deletions

View File

@ -8,15 +8,6 @@
flex: 2;
}
/* @media (max-width: 400px) {
.flex-grid {
display: flex;
.col {
margin: 0 0 10px 0;
}
}
} */
* {
box-sizing: border-box;
}

View File

@ -8,7 +8,7 @@ import { Component, OnInit } from '@angular/core';
export class SidebarComponent implements OnInit {
constructor() { }
opened: boolean = false;
opened = false;
Toggle(){
this.opened = !this.opened;
}