blob: d6fc2c28a85459ac1d8260fdd1a922f20fa240eb [file] [log] [blame]
Michael Davisea5241a2017-07-12 15:56:55 -05001
2// inline confirmation message
3.inline__confirm {
4 position: absolute;
5 top: 0;
Michael Davisc5626182017-03-10 15:48:05 -06006 transform: translateY(-103%);
Michael Davisea5241a2017-07-12 15:56:55 -05007 width: 100%;
Michael Davisc5626182017-03-10 15:48:05 -06008 height: 100%;
Michael Davisea5241a2017-07-12 15:56:55 -05009 z-index: 5;
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050010 background: $background-04;
11 color: $primary-light;
Michael Davisea5241a2017-07-12 15:56:55 -050012 padding: 2em 2em 1.55em 2em;
13 overflow: hidden;
Michael Davis6af13462017-04-04 14:07:02 -050014 @include fastTransition-all;
Michael Davisea5241a2017-07-12 15:56:55 -050015 &.active {
16 transform: translateY(0);
17 @include fastTransition-all;
18 }
19}
20
21// Power confirmation buttons
22.inline__confirm-buttons {
Michael Davis98276a32017-07-27 14:39:24 -050023 @media (min-width: 900px) {
24 position: absolute;
25 right: 0;
26 top: 50%;
27 transform: translateY(-50%);
Michael Davisea5241a2017-07-12 15:56:55 -050028 }
Yoshie Muranaka6f7ec802019-06-24 14:35:41 -050029 .btn {
30 min-width: 100px!important;
31 }
Michael Davisea5241a2017-07-12 15:56:55 -050032}