Skip to content

Instantly share code, notes, and snippets.

View kyoz's full-sized avatar
❤️
(•̀ᴗ•́)و ̑̑ Fighting

Kyoz kyoz

❤️
(•̀ᴗ•́)و ̑̑ Fighting
View GitHub Profile
@jrdnbwmn
jrdnbwmn / userChrome.css
Created January 9, 2018 20:31
My Firefox Quantum adjustments
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* Font size in tabs */
.tab-text {
font-size: 12px !important;
}
/* Padding and font size of bookmark toolbar */
#PersonalToolbar {
padding-top: 3px !important;
@arniebradfo
arniebradfo / any.component.html
Last active October 22, 2024 18:40
Angular *ngFor recursive list tree template
<h1>Angular 2 Recursive List</h1>
<ul>
<ng-template #recursiveList let-list>
<li *ngFor="let item of list">
{{item.title}}
<ul *ngIf="item.children.length > 0">
<ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: item.children }"></ng-container>
</ul>
</li>
</ng-template>