Skip to content

Commit 714e4e7

Browse files
committedApr 11, 2022
🔔 Image location
1 parent d456267 commit 714e4e7

File tree

8 files changed

+29
-5
lines changed

8 files changed

+29
-5
lines changed
 

‎account.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<div class="sidebar-left">
3939
<div class="grid-sidebar" style="margin-top: 12px">
4040
<div class="icon-sidebar-align">
41-
<img src="<?php echo BASE_URL . "/assets/images/logo.png"; ?>" alt="" height="130px" width="230px" />
41+
<img src="<?php echo BASE_URL . "/assets/images/logo.png"; ?>" alt="" height="100px" width="230px" />
4242
</div>
4343
</div>
4444

‎assets/css/hii.css

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
--color-font-secondary: #14171a;
1010
--color-nav-border: rgba(0, 0, 0, 0.25);
1111
}
12+
.center {
13+
margin-left: auto;
14+
margin-right: auto;
15+
width: 50%;
16+
}
1217

1318
* {
1419
margin: 0;
@@ -57,6 +62,7 @@
5762
display: flex !important;
5863
justify-content: center !important;
5964
align-items: center !important;
65+
6066
}
6167
#mine .bg-active {
6268
color: #1da1f2 !important;

‎assets/css/home_style.css

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@
99
--color-font-secondary: #14171a;
1010
--color-nav-border: rgba(0, 0, 0, 0.25);
1111
}
12+
.center {
13+
14+
margin-left: auto;
15+
margin-right: auto;
16+
width: 50%;
17+
}
1218

1319
* {
1420
margin: 0;

‎assets/css/index_style.css

+3
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ body{
8686
.login-bird{
8787
width: 60px;
8888
display: block;
89+
margin-left: auto;
90+
margin-right: auto;
91+
width: 50%;
8992
}
9093
.login-small-display{
9194
display:none;

‎assets/css/profile_style.css

+10-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,13 @@
99
--color-font-secondary: #14171a;
1010
--color-nav-border: rgba(0, 0, 0, 0.25);
1111
}
12-
12+
.center {
13+
display: block;
14+
margin-left: auto;
15+
margin-right: auto;
16+
width: 50%;
17+
}
18+
1319
* {
1420
margin: 0 ;
1521
padding: 0;
@@ -61,6 +67,9 @@
6167
display: flex !important;
6268
justify-content: center !important;
6369
align-items: center !important;
70+
margin-left: auto;
71+
margin-right: auto;
72+
width: 50%;
6473
}
6574
#mine .bg-active {
6675
color: #13a53f !important;

‎index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<section class="twt-login">
2727
<?php include 'includes/login.php'; ?>
2828
<div class="slow-login">
29-
<img class="login-bird" src="<?php echo BASE_URL . "/assets/images/logo.jpg"; ?>" alt="bird">
29+
<img class="login-bird" src="<?php echo BASE_URL . "/assets/images/logo.png"; ?>" alt="bird">
3030
<button class="login-small-display signin-btn pri-btn">Log in</button>
3131
<span class="front-para">See what’s happening in the world right now</span>
3232
<span class="join">Join Chirrup Today.</span>

‎profile.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<div class="sidebar-left">
4848
<div class="grid-sidebar" style="margin-top: 12px">
4949
<div class="icon-sidebar-align">
50-
<img src="<?php echo BASE_URL . "/assets/images/logo.png"; ?>" alt="" height="130px" width="230px" />
50+
<img src="<?php echo BASE_URL . "/assets/images/logo.png"; ?>" alt="" height="130px" width="230px" />
5151
</div>
5252
</div>
5353

‎status.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<div class="sidebar-left">
4141
<div class="grid-sidebar" style="margin-top: 12px">
4242
<div class="icon-sidebar-align">
43-
<img src="<?php echo BASE_URL . "/assets/images/logo.png"; ?>" alt="" height="130px" width="230px" />
43+
<img src="<?php echo BASE_URL . "/assets/images/logo.png"; ?>" alt="" height="130px" width="230px" />
4444
</div>
4545
</div>
4646

0 commit comments

Comments
 (0)
Please sign in to comment.