IuryNogueira/myreef

View on GitHub
thereef/src/app/components/reef-input/reef-input.component.scss

Summary

Maintainability
Test Coverage
:host {
display: block;
}
 
input {
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
 
input:focus {
border-radius: 4px;
border-color: #215d69;
outline: none; /* Remove o contorno padrão do navegador */
}
 
::placeholder {
color: #ccc;
}