26 lines
517 B
CSS
26 lines
517 B
CSS
@import "./stylesheets/hidden-functionality.css";
|
|
@import "./stylesheets/roles-functionality.css";
|
|
|
|
.limited-text {
|
|
overflow: hidden;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.backup-button {
|
|
background-color: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
padding: 0;
|
|
margin: 0;
|
|
width: 32px;
|
|
height: 32px;
|
|
color: rgba(79, 138, 95, 1);
|
|
border-radius: 10%;
|
|
transition: all 0.3s ease;
|
|
}
|
|
.backup-button:hover {
|
|
background-color: rgba(79, 138, 95, 0.05);
|
|
}
|