mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
25 lines
563 B
CSS
25 lines
563 B
CSS
.m_26775b0a {
|
|
--card-radius: var(--mantine-radius-default);
|
|
|
|
display: block;
|
|
width: 100%;
|
|
border-radius: var(--card-radius);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.m_26775b0a :where(*) {
|
|
cursor: inherit;
|
|
}
|
|
|
|
.m_26775b0a:where([data-with-border]) {
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
:where([data-mantine-color-scheme='light']) .m_26775b0a:where([data-with-border]) {
|
|
border-color: var(--mantine-color-gray-3);
|
|
}
|
|
|
|
:where([data-mantine-color-scheme='dark']) .m_26775b0a:where([data-with-border]) {
|
|
border-color: var(--mantine-color-dark-4);
|
|
}
|