openreplay/frontend/app/components/Client/ManageUsers/userItem.css
Shekar Siri a98cbe883c
changes(ui) - user invite link and assist changes (#116)
* change(ui) - assist installation link in onboarding

* change(ui) - invite link

* change(ui) - reset params

* change(ui) - unused component

* feature(ui) - user changes icon

* changes(ui) - invite link, and assist changes

* fix(ui) - smtp flag
2021-08-04 21:09:29 +05:30

47 lines
No EOL
818 B
CSS

@import 'mixins.css';
.wrapper {
padding: 15px 10px;
display: flex;
align-items: center;
border-bottom: solid thin $gray-light-shade;
&:hover {
background-color: $active-blue;
transition: all 0.2s;
& .actions {
opacity: 1;
transition: all 0.4s;
}
}
& .adminLabel {
margin-left: 10px;
padding: 0 10px;
border-radius: 3px;
background-color: $gray-lightest;
font-size: 12px;
border: solid thin $gray-light;
}
}
.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;
}
}
}
}