Browse Source

UI fixes

master
kj1352 5 years ago
parent
commit
d407cdc7d3
6 changed files with 1649 additions and 463 deletions
  1. +1620
    -455
      package-lock.json
  2. +2
    -2
      package.json
  3. +1
    -1
      src/app/more/more.component.html
  4. +2
    -0
      src/app/schedules/schedules.component.html
  5. +23
    -4
      src/app/schedules/schedules.component.scss
  6. +1
    -1
      src/app/widgets-holder/widgets-holder.component.html

+ 1620
- 455
package-lock.json
File diff suppressed because it is too large
View File


+ 2
- 2
package.json View File

@@ -27,13 +27,13 @@
"zone.js": "~0.9.1" "zone.js": "~0.9.1"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "~0.803.9",
"@angular-devkit/build-angular": "^0.803.21",
"@angular/cli": "~8.3.9", "@angular/cli": "~8.3.9",
"@angular/compiler-cli": "~8.2.9", "@angular/compiler-cli": "~8.2.9",
"@angular/language-service": "~8.2.9", "@angular/language-service": "~8.2.9",
"@types/node": "~8.9.4",
"@types/jasmine": "~3.3.8", "@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3", "@types/jasminewd2": "~2.0.3",
"@types/node": "~8.9.4",
"codelyzer": "^5.0.0", "codelyzer": "^5.0.0",
"jasmine-core": "~3.4.0", "jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1", "jasmine-spec-reporter": "~4.2.1",


+ 1
- 1
src/app/more/more.component.html View File

@@ -2,7 +2,7 @@
<img> <img>
<div class="name"> John Doe </div> <div class="name"> John Doe </div>
<div class="other-info"> Member ID: 03293 </div> <div class="other-info"> Member ID: 03293 </div>
<div class="other-info"> Restaurant Rating: <i class="icon ion-ios-star"></i> 4.0 </div>
<div class="other-info"> Restaurant Rating: 4.0 <i class="icon ion-ios-star"></i> </div>
</section> </section>


<ul class="nav-list"> <ul class="nav-list">


+ 2
- 0
src/app/schedules/schedules.component.html View File

@@ -6,7 +6,9 @@


<section class="calendar"> <section class="calendar">
<div class="month"> <div class="month">
<button (click)="selectPreviousMonth()"> <i class="icon ion-ios-arrow-back"></i> </button>
<span>{{ selectedMonth }} {{ selectedYear }}</span> <span>{{ selectedMonth }} {{ selectedYear }}</span>
<button (click)="selectNextMonth()"> <i class="icon ion-ios-arrow-forward"></i> </button>
</div> </div>


<div class="days"> <div class="days">


+ 23
- 4
src/app/schedules/schedules.component.scss View File

@@ -140,17 +140,30 @@
} }


.month { .month {
text-align: center;
padding: 5px 0 20px; padding: 5px 0 20px;
display: flex;
margin: 0 auto;
width: 50%;
align-items: center;
text-align: center;
justify-content: space-between;


span { span {
color: var(--dark-grey); color: var(--dark-grey);
text-transform: capitalize; text-transform: capitalize;
font-size: 16px; font-size: 16px;
letter-spacing: 1px;
font-weight: 500; font-weight: 500;
display: inline-block;
width: 180px;
} }

button {
width: 30px;
height: 30px;
font-size: 30px;
color: var(--brand-blue);
background-color: transparent;
border: 0;
}
} }




@@ -233,9 +246,11 @@
margin: 30px auto 20px; margin: 30px auto 20px;
padding-bottom: 20px; padding-bottom: 20px;
border-bottom: 1px solid #cecece; border-bottom: 1px solid #cecece;
display: none;


@media screen and (max-width: 1023px) { @media screen and (max-width: 1023px) {
margin: 20px auto; margin: 20px auto;
display: block;
} }


.month { .month {
@@ -326,7 +341,11 @@


.day-details { .day-details {
width: 90%; width: 90%;
margin: 0 auto;
margin: 35px auto 0;

@media screen and (max-width: 1023px) {
margin: 0 auto;
}


.tabs-holder { .tabs-holder {
display: flex; display: flex;


+ 1
- 1
src/app/widgets-holder/widgets-holder.component.html View File

@@ -16,7 +16,7 @@
<img> <img>
<div class="name"> John Doe </div> <div class="name"> John Doe </div>
<div class="other-info"> Member ID: 03293 </div> <div class="other-info"> Member ID: 03293 </div>
<div class="other-info"> Restaurant Rating: <i class="icon ion-ios-star"></i> 4.0 </div>
<div class="other-info"> Restaurant Rating: 4.0 <i class="icon ion-ios-star"></i> </div>
</section> </section>


<ul> <ul>


Loading…
Cancel
Save