Skip to content
Snippets Groups Projects
Commit 8e93e251 authored by Lucas Eduardo Schoenfelder's avatar Lucas Eduardo Schoenfelder
Browse files

wip missing excluir modal and PUT call to backend; now with correct colors

parent ac5212ac
No related branches found
No related tags found
3 merge requests!57Merge of develop into master,!56Fixed buttons reportar, seguir, compartilhar, guardar and entrar (in comments...,!24Tela recurso
......@@ -106,7 +106,8 @@ export default function Comment (props) {
(
<React.Fragment>
<div style={{marginTop : "5%", padding : "2px"}}>
<TextField
<StyledTextField
colecao={!props.recurso}
id = "input-comentario"
label = {"Editar Comentário"}
margin = "normal"
......@@ -184,6 +185,17 @@ export default function Comment (props) {
)
}
const StyledTextField = styled(TextField)`
label.Mui-focused {
color : ${props => props.colecao ? "rgb(103,58,183)" : "rgb(255,127,0)"};
}
.MuiInput-underline::after {
border-bottom: ${props => props.colecao ? "2px solid rgb(103,58,183)" : "2px solid rgb(255,127,0)"};
}
`
const StyledDiv = styled.div`
text-align : center;
.MuiButton-root {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment