Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/app/left-bar/left-bar.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,15 @@
<a class="cursor-pointer fs-15px text-grey5" [href]="getHelpMailToAttr()" target="_blank">Help</a>
</div>

<a
[routerLink]="'/' + globalVars.RouteNames.CREATE_POST"
queryParamsHandling="merge"
>
<div class="w-60 justify-content-center d-flex btn-create" style="border-radius:10px; padding:10px; margin: 0 auto; margin-top: 20px;">
Create Post
</div>
</a>

<div class="p-15px"></div>

<left-bar-button
Expand Down
6 changes: 6 additions & 0 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2171,6 +2171,11 @@ input {
border-top-right-radius: calc(.3rem - 1px);
}

.btn-create {
background-color: var(--secondary);
color: var(--text);
}

.likes-modal-container, .quote-reclouts-modal-container, .reclouts-modal-container, .diamonds-modal-container {
background-color: var(--background);
color: var(--text);
Expand All @@ -2182,6 +2187,7 @@ input {
text-decoration: inherit; // I prefer no underline when you hover over links
color: var(--grey);
}

}

[class*='mat-select'], [class*='mat-option-'], .mat-form-field-label, select {
Expand Down