[+] Create responsive class
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
|
||||
export default class Responsive
|
||||
{
|
||||
maxWidth: number;
|
||||
minWidth: number;
|
||||
margin: number;
|
||||
|
||||
constructor(maxWidth: number, minWidth: number, margin: number)
|
||||
{
|
||||
this.maxWidth = maxWidth;
|
||||
this.minWidth = minWidth;
|
||||
this.margin = margin;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user