File size: 1,057 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
47
48
49
50
@import "@automattic/color-studio/dist/color-variables";
@import "@automattic/typography/styles/variables";
@import "@wordpress/base-styles/breakpoints";
@import "@automattic/components/src/styles/typography";

.stats-empty-action__cta {
	// this needs an extra class because it' sometimes overwritten by build CSS file order
	&.stats-empty-action__cta-parent {
		height: 52px;
		margin-bottom: 12px;
		border: 1px solid $studio-gray-5;
		border-radius: 4px;
		box-shadow: none;
		width: 100%;
		cursor: pointer;

		&:hover {
			background: $studio-gray-0;
			border: 1px solid $studio-gray-80;
		}

		&:last-child {
			margin-bottom: 0;
		}

		&:focus {
			border: 1px solid var( --color-primary-light );
		}
	}

	.stats-empty-action__card-body {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 8px;
		font-size: $font-body-small;
		font-weight: 500;
		line-height: rem(20px);
	}

	.stats-empty-action__cta-link-text {
		color: $studio-gray-80;
		flex-grow: 1;
	}

	.stats-empty-action__cta-link-icon {
		color: $studio-gray-90;
	}
}