mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 20:31:13 +00:00
Fix table layout on mobile
This commit is contained in:
parent
f1147f5891
commit
96827a0dc9
1 changed files with 4 additions and 4 deletions
|
@ -91,9 +91,9 @@ export class EmojiForm extends Component<any, EmojiFormState> {
|
||||||
<th>{i18n.t("column_emoji")}</th>
|
<th>{i18n.t("column_emoji")}</th>
|
||||||
<th className="text-right">{i18n.t("column_shortcode")}</th>
|
<th className="text-right">{i18n.t("column_shortcode")}</th>
|
||||||
<th className="text-right">{i18n.t("column_category")}</th>
|
<th className="text-right">{i18n.t("column_category")}</th>
|
||||||
<th className="text-right">{i18n.t("column_imageurl")}</th>
|
<th className="text-right d-lg-table-cell d-none">{i18n.t("column_imageurl")}</th>
|
||||||
<th className="text-right">{i18n.t("column_alttext")}</th>
|
<th className="text-right">{i18n.t("column_alttext")}</th>
|
||||||
<th className="text-right d-none d-lg-table-cell">{i18n.t("column_keywords")}</th>
|
<th className="text-right d-lg-table-cell">{i18n.t("column_keywords")}</th>
|
||||||
<th style="width:121px"></th>
|
<th style="width:121px"></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -137,7 +137,7 @@ export class EmojiForm extends Component<any, EmojiFormState> {
|
||||||
onInput={linkEvent({form: this, index: index},this.handleEmojiCategoryChange)}
|
onInput={linkEvent({form: this, index: index},this.handleEmojiCategoryChange)}
|
||||||
/>
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td className="text-right">
|
<td className="text-right d-lg-table-cell d-none">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Url"
|
placeholder="Url"
|
||||||
|
@ -155,7 +155,7 @@ export class EmojiForm extends Component<any, EmojiFormState> {
|
||||||
onInput={linkEvent({form: this, index: index},this.handleEmojiAltTextChange)}
|
onInput={linkEvent({form: this, index: index},this.handleEmojiAltTextChange)}
|
||||||
/>
|
/>
|
||||||
</td>
|
</td>
|
||||||
<td className="text-right d-none d-lg-table-cell">
|
<td className="text-right d-lg-table-cell">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Keywords"
|
placeholder="Keywords"
|
||||||
|
|
Loading…
Reference in a new issue