-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
isRoomActive filter added
- Loading branch information
Showing
8 changed files
with
56 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.container { | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
<div class="container"> | ||
<img src="{{ logoUrl }}" alt="Logo"><br><br> | ||
|
||
<button (click)="showFormComponent()">New property</button> | ||
<button (click)="showRegisterComponent()">New user</button> | ||
<button (click)="showListComponent()">Properties</button> | ||
<button (click)="showUserAddComponent()">Write Advertisement</button> | ||
|
||
</div> | ||
<router-outlet></router-outlet> | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
.form-container { | ||
width: 200%; /* Adjust the width as needed */ | ||
} | ||
|
||
.form-container form { | ||
width: 50%; /* Adjust the width as needed */ | ||
margin: 0 auto; /* Center the form horizontally */ | ||
} | ||
|
||
.form-container label, | ||
.form-container input, | ||
.form-container textarea { | ||
width: 100%; /* Make the form fields occupy the full width of the form */ | ||
box-sizing: border-box; /* Include padding and border in the width calculation */ | ||
} | ||
|
||
.form-container button[type="submit"] { | ||
width: auto; /* Allow the submit button to adjust its width based on content */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters