cartodb-4.42/lib/assets/javascripts/new-dashboard/components/Apps/modals/modal-styles.scss
2024-04-06 05:25:13 +00:00

79 lines
1.4 KiB
SCSS

.oauthapps__modal {
display: flex;
flex-direction: column;
justify-content: space-around;
width: 100%;
height: 100%;
}
.oauthapps__icon {
display: flex;
position: relative;
width: 60px;
height: 60px;
border: 1px solid $neutral--400;
border-radius: 2px;
.oauthapps_svgicon {
margin: auto;
}
.oauthapps__badge {
position: absolute;
top: -8px;
right: -8px;
}
}
.oauthapps__modal-inner {
display: flex;
flex-direction: column;
align-items: center;
width: 960px;
margin: 0 auto;
padding: 0;
}
.oauthapps__modal-actions {
display: flex;
justify-content: center;
width: 100%;
margin-top: 54px;
padding-top: 38px;
border-top: 1px solid $neutral--300;
}
.oauthapps__modal-button {
display: flex;
align-items: center;
justify-content: center;
padding: 12px 18px;
border: 1px solid $color-primary;
border-radius: 4px;
background-color: transparent;
color: $color-primary;
font-family: 'Open Sans', sans-serif;
font-size: 12px;
font-weight: 600;
letter-spacing: 0;
text-transform: uppercase;
cursor: pointer;
&:hover {
background-color: transparent;
text-decoration: underline;
}
&--regenerate,
&--delete {
border: none;
background-color: $button-alert__bg-color;
color: $white;
&:hover {
background-color: $button-alert__bg-color--hover;
text-decoration: none;
}
}
}