source: trip-planner-front/node_modules/primeng/resources/components/tabview/tabview.css@ 59329aa

Last change on this file since 59329aa was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 1.1 KB
Line 
1.p-tabview-nav-container {
2 position: relative;
3}
4
5.p-tabview-scrollable .p-tabview-nav-container {
6 overflow: hidden;
7}
8
9.p-tabview-nav-content {
10 overflow-x: auto;
11 overflow-y: hidden;
12 scroll-behavior: smooth;
13 scrollbar-width: none;
14 overscroll-behavior: contain auto;
15}
16
17.p-tabview-nav {
18 display: flex;
19 margin: 0;
20 padding: 0;
21 list-style-type: none;
22 flex: 1 1 auto;
23}
24
25.p-tabview-nav-link {
26 cursor: pointer;
27 user-select: none;
28 display: flex;
29 align-items: center;
30 position: relative;
31 text-decoration: none;
32 overflow: hidden;
33}
34
35.p-tabview-ink-bar {
36 display: none;
37 z-index: 1;
38}
39
40.p-tabview-nav-link:focus {
41 z-index: 1;
42}
43
44.p-tabview-title {
45 line-height: 1;
46 white-space: nowrap;
47}
48
49.p-tabview-nav-btn {
50 position: absolute;
51 top: 0;
52 z-index: 2;
53 height: 100%;
54 display: flex;
55 align-items: center;
56 justify-content: center;
57}
58
59.p-tabview-nav-prev {
60 left: 0;
61}
62
63.p-tabview-nav-next {
64 right: 0;
65}
66
67.p-tabview-nav-content::-webkit-scrollbar {
68 display: none;
69}
70
71.p-tabview-close {
72 z-index: 1;
73}
Note: See TracBrowser for help on using the repository browser.