summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components/inline-input.css
blob: 8bb0f9afb0ea9abed4ac36a472d52db118173fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[data-component="inline-input"] {
	color: inherit;
	background: transparent;
	border: 0;
	border-radius: var(--radius-md);
	padding: 0;
	min-width: 0;
	font: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	box-sizing: border-box;

	&:focus {
		outline: none;
		box-shadow: 0 0 0 1px var(--border-interactive-focus);
	}
}