File size: 740 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
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";

.plugins-overview__container {
	display: flex;
	flex-direction: column;
	// The -64px is to undo the padding of layout.has-no-masterbar (32px) & .layout__content (32px)
	min-height: calc(100vh - 64px);

	.current-section {
		padding: 0 16px;

		button {
			padding: 12px 8px;
		}
	}
}

.plugins-overview__logo {
	fill: var(--color-neutral-10);
	color: var(--color-neutral-10);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	path {
		fill: var(--color-neutral-10);
	}

	@include breakpoint-deprecated( ">960px" ) {
		width: 100px;
		height: 100px;
	}
}

.plugins__page-title {
	font-weight: 600;
	margin-block-end: 8px;
}