damn you css

This commit is contained in:
TopchetoEU 2023-07-01 01:50:12 +03:00
parent a590e4c7d4
commit 0dbfd14313
4 changed files with 12 additions and 4 deletions

View File

@ -1,4 +1,4 @@
<h1 style="text-align: center;">User {{user.username}}'s likes:</h1> <h1 class="title">User {{user.username}}'s likes:</h1>
<a style="text-align: center;" href="/user/{{user.username}}">Go to posts</a> <a class="title" href="/user/{{user.username}}">Go to posts</a>
<app-images [images]="images | async" #imgs></app-images> <app-images [images]="images | async" #imgs></app-images>

View File

@ -0,0 +1,4 @@
.title {
display: block;
text-align: center;
}

View File

@ -1,4 +1,4 @@
<h1 style="text-align: center;">User {{user.username}}'s posts:</h1> <h1 class="title">User {{user.username}}'s posts:</h1>
<a style="text-align: center;" href="/likes/{{user.username}}">Go to likes</a> <a class="title" href="/likes/{{user.username}}">Go to likes</a>
<app-images [images]="images | async" #imgs></app-images> <app-images [images]="images | async" #imgs></app-images>

View File

@ -0,0 +1,4 @@
.title {
display: block;
text-align: center;
}