# code-snippets/3.10.2/css/edit/_notices.scss

Code Snippets, version 3.10.2. 29 lines.

- Page: https://pluginprobe.com/plugins/code-snippets/3.10.2/code/css/edit/_notices.scss
- Raw: https://pluginprobe.com/plugins/code-snippets/3.10.2/raw/css/edit/_notices.scss
- Modified: 2026-08-04T13:35:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/code-snippets/3.10.2/code/css/edit/_notices.scss#L10-L20`.

```scss

.code-snippets-notice {
	.notice-dismiss {
		position: absolute;
		transform: initial;
		inset-inline-end: 0;
		inset-block-start: 0;
	}

	details {
		margin: .5em 0;
		padding: 2px;

		summary {
			cursor: pointer;
		}

		pre {
			max-inline-size: 100%;
			overflow: auto hidden;
			white-space: pre;
		}

		.stack-trace-hint {
			opacity: 0.5;
		}
	}
}

```
