Created
June 7, 2018 20:12
-
-
Save AndersonFirmino/af1aa53b6f86c0354d1de6bfa77c81fc to your computer and use it in GitHub Desktop.
FIx for materialize error label jQuery validation + Materializecss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* FIX Materialize error label */ | |
label.invalid { | |
position: relative; | |
top: -1rem; | |
left: 0rem !important; | |
font-size: 0.8rem; | |
color: #f44336 !important; | |
-webkit-transform: translateY(0%); | |
-ms-transform: translateY(0%); | |
-o-transform: translateY(0%); | |
transform: translateY(0%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment