ソースを参照

Fix media gallery CSS (#5064)

master
Eugen Rochko 6年前
committed by GitHub
コミット
233258c61b
1個のファイルの変更13行の追加3行の削除
  1. +13
    -3
      app/javascript/styles/components.scss

+ 13
- 3
app/javascript/styles/components.scss ファイルの表示

@@ -3942,12 +3942,14 @@ button.icon-button.active i.fa-retweet {
.account-gallery__container {
margin: -2px;
padding: 4px;
display: flex;
flex-wrap: wrap;
}

.account-gallery__item {
float: left;
width: 96px;
height: 96px;
flex: 1 1 auto;
width: calc(100% / 3 - 4px);
height: 95px;
margin: 2px;

a {
@@ -3958,6 +3960,14 @@ button.icon-button.active i.fa-retweet {
background-size: cover;
background-position: center;
position: relative;
color: inherit;
text-decoration: none;

&:hover,
&:active,
&:focus {
outline: 0;
}
}
}



読み込み中…
キャンセル
保存