Skip to content

Commit

Permalink
Merge pull request #142 from openearth/minor_cosmetic_changes_stories
Browse files Browse the repository at this point in the history
Minor cosmetic changes stories
  • Loading branch information
evetion authored Dec 21, 2021
2 parents 3e875d3 + 83b45aa commit 80e9c18
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
class="stepper pa-0"
flat
non-linear
elevation="0"
>
<v-stepper-header class="stepper-header">
<v-stepper-header class="stepper-header" flat>
<v-stepper-step
:color="storiesStepColor"
complete
Expand Down Expand Up @@ -123,6 +124,7 @@ export default {
.stepper {
width: 400px;
height: 57px;
box-shadow: 0px 0px 0px;
}
.stepper-header {
Expand Down
2 changes: 1 addition & 1 deletion src/components/NewsLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<v-list-item-action>
<v-list-item-action-text v-text="feed.date"/>
<v-btn icon :href="feed.URL" target="_blank" rel="noopener">
<v-icon color="grey lighten-1">mdi-link</v-icon>
<v-icon color="grey lighten-1">mdi-exit-to-app</v-icon>
</v-btn>
</v-list-item-action>
</v-list-item>
Expand Down
8 changes: 4 additions & 4 deletions src/components/StoriesLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
>
<v-card-title>
<custom-icon :name="theme" iconFolder="themes" class="ma-2"/>
<span>{{ theme }}</span>
<span><strong>{{ theme }}</strong></span>
</v-card-title>
<v-list
color="rgba(0, 0, 0, 0)"
Expand All @@ -16,7 +16,7 @@
v-for="story in stories"
:key="story.ID"
>
<v-list-item-avatar size="80">
<v-list-item-avatar size="130" >
<v-img :src="story.icon"></v-img>
</v-list-item-avatar>

Expand All @@ -26,7 +26,7 @@

<v-list-item-action>
<v-btn icon :href="story.URL" target="_blank" rel="noopener">
<v-icon color="grey lighten-1">mdi-link</v-icon>
<v-icon color="grey lighten-1">mdi-exit-to-app</v-icon>
</v-btn>
</v-list-item-action>
</v-list-item>
Expand Down Expand Up @@ -57,7 +57,7 @@ export default {
.stories-card {
border-color: white !important;
margin-bottom: 10px;
border-width: thick !important;
border-width: medium !important;
}
</style>

0 comments on commit 80e9c18

Please sign in to comment.