Michael Davis | ea5241a | 2017-07-12 15:56:55 -0500 | [diff] [blame] | 1 | |
| 2 | // inline confirmation message |
| 3 | .inline__confirm { |
| 4 | position: absolute; |
| 5 | top: 0; |
Michael Davis | c562618 | 2017-03-10 15:48:05 -0600 | [diff] [blame] | 6 | transform: translateY(-103%); |
Michael Davis | ea5241a | 2017-07-12 15:56:55 -0500 | [diff] [blame] | 7 | width: 100%; |
Michael Davis | c562618 | 2017-03-10 15:48:05 -0600 | [diff] [blame] | 8 | height: 100%; |
Michael Davis | ea5241a | 2017-07-12 15:56:55 -0500 | [diff] [blame] | 9 | z-index: 5; |
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 10 | background: $background-04; |
| 11 | color: $primary-light; |
Michael Davis | ea5241a | 2017-07-12 15:56:55 -0500 | [diff] [blame] | 12 | padding: 2em 2em 1.55em 2em; |
| 13 | overflow: hidden; |
Michael Davis | 6af1346 | 2017-04-04 14:07:02 -0500 | [diff] [blame] | 14 | @include fastTransition-all; |
Michael Davis | ea5241a | 2017-07-12 15:56:55 -0500 | [diff] [blame] | 15 | &.active { |
| 16 | transform: translateY(0); |
| 17 | @include fastTransition-all; |
| 18 | } |
| 19 | } |
| 20 | |
| 21 | // Power confirmation buttons |
| 22 | .inline__confirm-buttons { |
Michael Davis | 98276a3 | 2017-07-27 14:39:24 -0500 | [diff] [blame] | 23 | @media (min-width: 900px) { |
| 24 | position: absolute; |
| 25 | right: 0; |
| 26 | top: 50%; |
| 27 | transform: translateY(-50%); |
Michael Davis | ea5241a | 2017-07-12 15:56:55 -0500 | [diff] [blame] | 28 | } |
Yoshie Muranaka | 6f7ec80 | 2019-06-24 14:35:41 -0500 | [diff] [blame] | 29 | .btn { |
| 30 | min-width: 100px!important; |
| 31 | } |
Michael Davis | ea5241a | 2017-07-12 15:56:55 -0500 | [diff] [blame] | 32 | } |