瀏覽代碼

Remove max-width for textarea media < 768px (#6014)

Co-authored-by: Tim Lai <timothy.lai@gmail.com>
bubble
Wesley Schwengle 4 年之前
committed by GitHub
父節點
當前提交
67627d7587
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 11 行新增3 行删除
  1. +11
    -3
      src/style/_form.scss

+ 11
- 3
src/style/_form.scss 查看文件

@@ -46,6 +46,17 @@ label
@include text_headline();
}

input[type=text],
input[type=password],
input[type=search],
input[type=email],
input[type=file]
{
@media (max-width: 768px) {
max-width: 175px;
}
}


input[type=text],
input[type=password],
@@ -61,9 +72,6 @@ textarea
border: 1px solid $form-input-border-color;
border-radius: 4px;
background: $form-input-background-color;
@media (max-width: 768px) {
max-width: 175px;
}


&.invalid


Loading…
取消
儲存