nk_jtb 0.11.0 → 0.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/extras/_nk-app.scss +31 -0
- package/src/extras/_nk-docs.scss +1 -1
package/package.json
CHANGED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
@use '../mixins/common' as *;
|
|
2
|
+
@use '../variables/tailwind-colors' as *;
|
|
3
|
+
@use 'sass:map';
|
|
4
|
+
|
|
5
|
+
// ==========================================================================
|
|
6
|
+
// NAYKEL DOCS --
|
|
7
|
+
// ==========================================================================
|
|
8
|
+
//
|
|
9
|
+
// The styles in this file are specifically tailored for the Naykel Laravel
|
|
10
|
+
// applications. They are not included in the main build by default. To use
|
|
11
|
+
// these styles, you need to manually import this file.
|
|
12
|
+
|
|
13
|
+
// ==========================================================================
|
|
14
|
+
// BUTTONS
|
|
15
|
+
// ==========================================================================
|
|
16
|
+
|
|
17
|
+
// opinionated button for create, edit, delete, and view actions. Works well
|
|
18
|
+
// with resource actions in tables and lists.
|
|
19
|
+
.action-button {
|
|
20
|
+
display: inline-flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
color: $color;
|
|
23
|
+
padding-inline: 0.5rem;
|
|
24
|
+
padding-block: 0.25rem;
|
|
25
|
+
border-radius: 0.5rem;
|
|
26
|
+
opacity: 0.7;
|
|
27
|
+
&:hover {
|
|
28
|
+
color: map.get($tailwind-colors, 'rose', '700');
|
|
29
|
+
background: map.get($tailwind-colors, 'rose', '100');
|
|
30
|
+
}
|
|
31
|
+
}
|
package/src/extras/_nk-docs.scss
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@use '../variables/tailwind-colors' as *;
|
|
3
3
|
@use 'sass:map';
|
|
4
4
|
|
|
5
|
-
// ==========================================================================
|
|
5
|
+
// ==========================================================================
|
|
6
6
|
// NAYKEL DOCS --
|
|
7
7
|
// ==========================================================================
|
|
8
8
|
//
|