1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .g-modal {
- .g-modal-wrapper {
- position: relative;
- .close {
- font-size: 20px;
- position: absolute;
- top: 0;
- right: 0;
- cursor: pointer;
- color: #D0D8E2;
- }
- .g-modal-title {
- font-size: 20px;
- color: #303036;
- font-weight: 600;
- }
- .g-modal-body {
- padding: 30px 0;
- overflow-y: auto;
- }
- .g-modal-btns {
- margin: 0 -15px;
- .button {
- margin: 0 15px;
- padding-left: 30px;
- padding-right: 30px;
- }
- }
- .g-modal-btns.right {
- text-align: right;
- }
- .g-modal-btns.left {
- text-align: left;
- }
- .g-modal-btns.center {
- text-align: center;
- }
- }
- }
|