Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Vue3 form field components with search and passowrd validation.

atomjoy/vue3-input

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

56 Commits

Repository files navigation

Vue3 form field components

Vue3 form field components with search and passowrd validation.

Inputs (light/dark mode)

  • Input
  • Textarea
  • Select (search)
  • Password (validation)
  • Radiobox (select one)
  • Checkbox (multiple, single, onoff toggle)
  • Phone prefix (flags emoji, country name, country code)

Import fonts

assets/css/main.css

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
html, input, select, textarea, option, label, div {
 font-family: 'Poppins', Arial, Helvetica, sans-serif;
}
label i {
 float: right;
}
h1.full {
 text-align: left;
}

Demo page

https://github.com/atomjoy/vue3-input/blob/main/input/example/DemoPageView.vue

RWD settings and dark mode style

Style in input-root.css

@media (prefers-color-scheme: dark) {
 html,
 body {
 background: var(--wow-bg);
 }
}
@media (max-width: 1600px) {
 :root {
 --wow-font-size: 18px;
 }
}
@media (max-width: 1280px) {
 :root {
 --wow-font-size: 16px;
 }
}
@media (max-width: 1024px) {
 :root {
 --wow-font-size: 14px;
 }
}
@media (max-width: 480px) {
 :root {
 --wow-font-size: 14px;
 }
}

Images

LICENSE

This project is licensed under the terms of the GNU GPLv3 license.

AltStyle によって変換されたページ (->オリジナル) /