openreplay/frontend/app/components/Client/Roles/components/RoleItem/roleItem.css
Shekar Siri 4eaee22d30
Roles and Permissions UI (#333)
* feat(ui) - roles with projectId and ui improvements

* feat(ui) - roles fixes

* feat(ui) - roles fixes

* feat(ui) - roles menu item icon change
2022-02-16 17:00:48 +01:00

39 lines
No EOL
665 B
CSS

.actions {
/* margin-left: auto; */
/* opacity: 0; */
transition: all 0.4s;
display: flex;
align-items: center;
& .button {
padding: 5px;
cursor: pointer;
margin-left: 10px;
display: flex;
align-items: center;
justify-content: center;
&:hover {
& svg {
fill: $teal-dark;
}
}
&.disabled {
pointer-events: none;
opacity: 0.5;
}
}
& .disabled {
pointer-events: none;
opacity: 0.5;
}
}
.label {
margin-right: 10px;
padding: 0 5px;
border-radius: 3px;
background-color: $gray-lightest;
font-size: 12px;
border: solid thin $gray-light;
width: fit-content;
}