diff --git a/src/style/main.scss b/src/style/main.scss new file mode 100644 index 000000000..b10b6ba43 --- /dev/null +++ b/src/style/main.scss @@ -0,0 +1,159 @@ +.v-application .overflow-auto { + overflow: auto !important; +} +.overflow-hidden { + overflow: hidden !important; +} +.overflow-visible { + overflow: visible !important; +} +.overflow-x-auto { + overflow-x: auto !important; +} +.overflow-x-hidden { + overflow-x: hidden !important; +} +.overflow-y-auto { + overflow-y: auto !important; +} +.overflow-y-hidden { + overflow-y: hidden !important; +} +.d-none { + display: none !important; +} +.d-inline { + display: inline !important; +} +.d-inline-block { + display: inline-block !important; +} +.d-block { + display: block !important; +} +.d-table { + display: table !important; +} +.d-table-row { + display: table-row !important; +} +.d-table-cell { + display: table-cell !important; +} +.d-flex { + display: flex !important; +} +.d-inline-flex { + display: inline-flex !important; +} +.float-none { + float: none !important; +} +.float-left { + float: left !important; +} +.float-right { + float: right !important; +} +.flex-fill { + flex: 1 1 auto !important; +} +.flex-row { + flex-direction: row !important; +} +.flex-column { + flex-direction: column !important; +} +.flex-row-reverse { + flex-direction: row-reverse !important; +} +.flex-column-reverse { + flex-direction: column-reverse !important; +} +.flex-grow-0 { + flex-grow: 0 !important; +} +.flex-grow-1 { + flex-grow: 1 !important; +} +.flex-shrink-0 { + flex-shrink: 0 !important; +} +.flex-shrink-1 { + flex-shrink: 1 !important; +} +.flex-wrap { + flex-wrap: wrap !important; +} +.flex-nowrap { + flex-wrap: nowrap !important; +} +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} +.justify-start { + justify-content: flex-start !important; +} +.justify-end { + justify-content: flex-end !important; +} +.justify-center { + justify-content: center !important; +} +.justify-space-between { + justify-content: space-between !important; +} +.justify-space-around { + justify-content: space-around !important; +} +.align-start { + align-items: flex-start !important; +} +.align-end { + align-items: flex-end !important; +} +.align-center { + align-items: center !important; +} +.align-baseline { + align-items: baseline !important; +} +.align-stretch { + align-items: stretch !important; +} +.align-content-start { + align-content: flex-start !important; +} +.align-content-end { + align-content: flex-end !important; +} +.align-content-center { + align-content: center !important; +} +.align-content-space-between { + align-content: space-between !important; +} +.align-content-space-around { + align-content: space-around !important; +} +.align-content-stretch { + align-content: stretch !important; +} +.align-self-auto { + align-self: auto !important; +} +.align-self-start { + align-self: flex-start !important; +} +.align-self-end { + align-self: flex-end !important; +} +.align-self-center { + align-self: center !important; +} +.align-self-baseline { + align-self: baseline !important; +} +.align-self-stretch { + align-self: stretch !important; +} \ No newline at end of file diff --git a/src/style/readme.md b/src/style/readme.md new file mode 100644 index 000000000..eae46b5fc --- /dev/null +++ b/src/style/readme.md @@ -0,0 +1,137 @@ +# System design + +
First solve the problem then write the code
+
+
+
+## Table of content
+
+
Specify the elements display property. These classes can be applied using the following format d-{display}.
+
d-inline-flex - sets the element display property to inline-flexd-flex - sets the element display property to flexd-inline-block - sets the element display property to inline-blockd-block - sets the element display property to blockd-inline - sets the element display property to inlined-none - sets the element display property to noneControl the layout of flex containers with alignment, justification and more with responsive flexbox utilities.
+ +You can also customize flex utilities to apply based upon various breakpoints.
+ + +Float utility classes.
+ +You can also customize flex utilities to apply based upon
+ +