Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed May 28, 2018
1 parent cc4a7c1 commit 48a1762
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
2 changes: 2 additions & 0 deletions locales/ja.yml
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,8 @@ desktop/views/components/notes.note.vue:
renote: "Renote"
add-reaction: "リアクション"
detail: "詳細"
private: "この投稿は非公開です"
deleted: "この投稿は削除されました"

desktop/views/components/notes.vue:
error: "読み込みに失敗しました。"
Expand Down
2 changes: 1 addition & 1 deletion src/client/app/desktop/views/components/note-preview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ root(isDark)
> .main
float left
width calc(100% - 68px)
width calc(100% - 60px)
> header
display flex
Expand Down
8 changes: 4 additions & 4 deletions src/client/app/desktop/views/components/notes.note.sub.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ root(isDark)
> .avatar
display block
float left
margin 0 14px 0 0
width 52px
height 52px
margin 0 12px 0 0
width 48px
height 48px
border-radius 8px
> .main
float left
width calc(100% - 66px)
width calc(100% - 60px)
> header
display flex
Expand Down
3 changes: 3 additions & 0 deletions src/client/app/mobile/views/components/note-preview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ root(isDark)
float left
width calc(100% - 60px)
@media (max-width 500px)
width calc(100% - 54px)
> header
display flex
align-items baseline
Expand Down
14 changes: 7 additions & 7 deletions src/client/app/mobile/views/components/note.sub.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,21 +62,21 @@ root(isDark)
display block
float left
margin 0 10px 0 0
width 44px
height 44px
width 42px
height 42px
border-radius 8px
@media (min-width 500px)
margin-right 16px
width 52px
height 52px
margin-right 14px
width 50px
height 50px
> .main
float left
width calc(100% - 54px)
width calc(100% - 52px)
@media (min-width 500px)
width calc(100% - 68px)
width calc(100% - 64px)
> header
display flex
Expand Down

0 comments on commit 48a1762

Please sign in to comment.