File size: 720 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";

.device-switcher__toolbar {
	display: none;
	flex: 1;

	.device-switcher__toolbar-devices {
		align-items: center;
		display: flex;
		height: 58px;
		gap: 18px;
		justify-content: center;

		> button {
			border-radius: 2px;
			height: 28px;
			padding: 0;
			transition: color 0.1s ease-in-out;

			svg {
				fill: currentColor;
				color: var(--studio-gray-10);
			}

			&.is-selected,
			&:hover,
			&:focus {
				box-shadow: none;

				svg {
					color: var(--studio-black);
				}
			}

			&:focus-visible {
				box-shadow: inset 0 0 0 2px var(--color-primary-light);
			}
		}
	}

	@include break-small {
		display: block;
	}
}